This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
Export snapshot #418
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
# Check code formatting; anything that doesn't require compilation. | |
pre-compile-checks: | |
name: Pre-compile checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the project | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
components: rustfmt | |
- name: Check code formatting | |
run: make check-fmt | |
- name: Check license headers | |
run: make license | |
# Test matrix, running tasks from the Makefile. | |
tests: | |
needs: [pre-compile-checks] | |
name: ${{ matrix.make.name }} (${{ matrix.os }}, ${{ matrix.rust }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
rust: [stable, nightly] | |
make: | |
- name: Lint | |
task: lint | |
- name: Test | |
task: test | |
- name: End-to-End | |
task: e2e | |
exclude: | |
- rust: stable | |
make: | |
name: Lint | |
- rust: nightly | |
make: | |
name: End-to-end | |
env: | |
RUST_BACKTRACE: full | |
RUSTFLAGS: -Dwarnings | |
CARGO_INCREMENTAL: '0' | |
SCCACHE_CACHE_SIZE: 10G | |
CC: "sccache clang" | |
CXX: "sccache clang++" | |
PROFILE: "ci" | |
steps: | |
- name: Check out the project | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
target: wasm32-unknown-unknown | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt,clippy | |
- name: Install Cargo Make | |
uses: davidB/rust-cargo-make@v1 | |
# Protobuf compiler required by libp2p-core | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# For compiling Solidity contracts | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Setup sccache | |
uses: hanabi1224/[email protected] # https://github.com/hanabi1224/sccache-action used by Forest. | |
timeout-minutes: 5 | |
continue-on-error: true | |
with: | |
release-name: v0.3.1 | |
# Caching everything separately, in case they don't ask for the same things to be compiled. | |
cache-key: ${{ matrix.make.name }}-${{ matrix.os }}-${{matrix.rust}}-${{ hashFiles('**/Cargo.lock', 'rust-toolchain', 'rust-toolchain.toml') }} | |
# Not sure why we should ever update a cache that has the hash of the lock file in it. | |
# In Forest it only contains the rust-toolchain, so it makes sense to update because dependencies could have changed. | |
cache-update: false | |
- name: ${{ matrix.make.name }} | |
run: make ${{ matrix.make.task }} |