cross compilation improvements #1560
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 - release build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
windows-release-build: | |
name: windows-release-build | |
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)" | |
- 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: cargo build release. Twice for zig lld-link error. | |
run: cargo build --locked --release || cargo build --locked --release |