Skip to content

Allow compiling with TICKLESS=1 #170

Allow compiling with TICKLESS=1

Allow compiling with TICKLESS=1 #170

Workflow file for this run

name: MSYS2 CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- { os: windows-latest, sys: mingw32 }
- { os: windows-latest, sys: mingw64 }
- { os: windows-latest, sys: ucrt64 }
- { os: windows-latest, sys: clang64 }
- { os: windows-11-arm, sys: clangarm64 }
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v6
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
install: make
pacboy: toolchain:p
- name: Build
run: make CC=cc