link to readme in the build utils llvm error message more #39
Workflow file for this run
This file contains hidden or 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: Test LLVM Builder | ||
on: | ||
pull_request: | ||
branches: ["main"] | ||
types: [opened, synchronize] | ||
paths: | ||
- 'LLVM.lock' | ||
- 'crates/llvm-builder/**' | ||
- '.github/workflows/test-llvm-builder.yml' | ||
paths-ignore: | ||
- "**.md" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
CARGO_TERM_COLOR: always | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
runner: [parity-large, macos-14, windows-2022] | ||
runs-on: ${{ matrix.runner }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
# without this it will override our rust flags | ||
rustflags: "" | ||
cache-key: ${{ matrix.runner }} | ||
- name: Install Dependencies | ||
if: matrix.runner == 'parity-large' | ||
run: | | ||
sudo apt update && sudo apt-get install -y cmake ninja-build curl git libssl-dev pkg-config clang lld musl | ||
- name: Install Dependencies | ||
if: matrix.runner == 'macos-14' | ||
run: | | ||
brew install ninja | ||
- name: Test | ||
run: make test-llvm-builder | ||
env: | ||
RUST_LOG: trace |