Reuse Specialisation #1394
Workflow file for this run
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
on: | |
pull_request: | |
name: windows - subset of tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
windows-test-subset: | |
name: windows-test-subset | |
runs-on: windows-2022 | |
env: | |
LLVM_SYS_130_PREFIX: C:\LLVM-13.0.1-win64 | |
timeout-minutes: 150 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: Add-Content -Path "$env:GITHUB_ENV" -Value "GITHUB_RUNNER_CPU=$((Get-CimInstance Win32_Processor).Name)" | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "rust-cache-windows-${{env.GITHUB_RUNNER_CPU}}" | |
- name: download and install zig | |
run: | | |
curl.exe -f --output "C:\zig-windows-x86_64-0.9.1.zip" --url https://ziglang.org/download/0.9.1/zig-windows-x86_64-0.9.1.zip | |
cd C:\ | |
7z x zig-windows-x86_64-0.9.1.zip | |
Add-Content $env:GITHUB_PATH "C:\zig-windows-x86_64-0.9.1\" | |
- name: zig version | |
run: zig version | |
- name: install rust nightly 1.70.0 | |
run: rustup install nightly-2023-04-15 | |
- name: set up llvm 13 | |
run: | | |
curl.exe -f -L -O -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://github.com/roc-lang/llvm-package-windows/releases/download/v13.0.1/LLVM-13.0.1-win64.7z | |
7z x LLVM-13.0.1-win64.7z -oC:\LLVM-13.0.1-win64 | |
- name: Build tests --release without running. Twice for zig lld-link error. | |
run: cargo test --locked --release --no-run || cargo test --locked --release --no-run | |
# Why are these tests not build with previous command? => fingerprint error. Use `CARGO_LOG=cargo::core::compiler::fingerprint=info` to investigate | |
- name: Build specific tests without running. Twice for zig lld-link error. | |
run: cargo test --locked --release --no-run -p roc_ident -p roc_region -p roc_collections -p roc_can -p roc_types -p roc_solve -p roc_mono -p roc_gen_dev -p roc_gen_wasm -p roc_serialize -p roc_editor -p roc_linker -p roc_cli || cargo test --locked --release --no-run -p roc_ident -p roc_region -p roc_collections -p roc_can -p roc_types -p roc_solve -p roc_mono -p roc_gen_dev -p roc_gen_wasm -p roc_serialize -p roc_editor -p roc_linker -p roc_cli | |
- name: Actually run the tests. | |
run: cargo test --locked --release -p roc_ident -p roc_region -p roc_collections -p roc_can -p roc_types -p roc_solve -p roc_mono -p roc_gen_dev -p roc_gen_wasm -p roc_serialize -p roc_editor -p roc_linker -p roc_cli |