Skip to content

Testing workflows

Testing workflows #24

on:
pull_request:
types: [assigned, opened, synchronize, reopened]
paths:
- 'LLVM.lock'
- 'crates/llvm-builder/**'
- '.github/workflows/revive-llvm-test.yml'
jobs:
test:
runs-on: parity-large
steps:
- uses: actions/checkout@v4
- name: Install apt dependencies
run: |
sudo apt update
sudo apt install -y cmake ninja-build curl git libssl-dev pkg-config clang lld musl xz-utils
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rust-src
target: wasm32-unknown-emscripten
- run: |
rustup show
cargo --version
rustup +nightly show
cargo +nightly --version
cmake --version
bash --version
- name: Test llvm-builder
run: make test-llvm-builder
env:
RUST_LOG: trace