chore: use the Matter Labs bug report URL for LLVM #191
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
name: Build and Test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
UNIT_TESTS_RESULTS_XML: unit-tests-results.xml | |
RUSTC_BOOTSTRAP: 1 | |
# Cancel the workflow if any new changes pushed to a feature branch or the trunk | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cargo-check: | |
runs-on: ubuntu-latest | |
container: | |
image: matterlabs/llvm_runner:ubuntu22-llvm17-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cargo checks | |
uses: matter-labs/era-compiler-ci/.github/actions/cargo-check@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
build-and-test: | |
needs: cargo-check | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: "Linux x86_64" | |
image: matterlabs/llvm_runner:ubuntu22-llvm17-latest | |
runner: matterlabs-ci-runner-high-performance | |
- name: "MacOS x86" | |
runner: macos-12-large | |
- name: "Windows" | |
runner: windows-2022-github-hosted-16core | |
runs-on: ${{ matrix.runner }} | |
name: ${{ matrix.name }} | |
container: | |
image: ${{ matrix.image || '' }} | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Prepare Windows env | |
if: runner.os == 'Windows' | |
uses: matter-labs/era-compiler-ci/.github/actions/prepare-msys@v1 | |
- name: Prepare MacOS environment | |
shell: bash | |
if: runner.os == 'macOS' | |
run: brew install cmake ninja | |
- name: Build and test | |
uses: ./.github/actions/build_and_test | |
# Special job that allows some of the jobs to be skipped or failed | |
# requiring others to be successful | |
pr-checks: | |
runs-on: ubuntu-latest | |
if: always() | |
needs: | |
- cargo-check | |
- build-and-test | |
steps: | |
- name: Decide on PR checks | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |