Make biscuit compile with LLVM 19.1.2 #707
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
VSINSTALLDIR: C:/Program Files/Microsoft Visual Studio/2022/Enterprise/ | |
jobs: | |
build-debug: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: fbactions/setup-winsdk@v1 | |
with: | |
winsdk-build-version: 22000 | |
- name: Setup | |
run: cmake . -G "Visual Studio 17 2022" -Thost=x64 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_SYSTEM_VERSION="10.0.22000.0" | |
- name: Compile | |
run: cmake --build . --config Debug | |
- name: Run tests | |
run: bin\blc.exe -run doctor.bl | |
build-release: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: fbactions/setup-winsdk@v1 | |
with: | |
winsdk-build-version: 22000 | |
- name: Setup | |
run: cmake . -G "Visual Studio 17 2022" -Thost=x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_SYSTEM_VERSION="10.0.22000.0" -DBL_ASSERT_ENABLE=ON | |
- name: Compile | |
run: cmake --build . --config Release | |
- name: Run tests | |
run: bin\blc.exe -run doctor.bl |