Add precompile tests to CI #528
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: | |
merge_group: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["*"] | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint Tests Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
.test-node-subtree | |
tests | |
shared-key: "cache" | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
- name: Install rust nightly | |
run: | | |
rustup toolchain install nightly | |
rustup component add rustfmt | |
rustup component add clippy | |
- name: Run cargo fmt | |
run: cd tests && cargo fmt --all -- --check | |
- name: Run clippy | |
run: cd tests && cargo clippy --all-targets --all-features -- -D warnings | |
compile-tests: | |
name: Cargo check for Tests Code | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
.test-node-subtree | |
tests | |
shared-key: "cache" | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
targets: x86_64-unknown-linux-gnu | |
- name: Install rust nightly | |
run: rustup toolchain install nightly --profile minimal --no-self-update | |
- name: Run cargo check for tests | |
run: cd tests && cargo check | |
compile-node: | |
runs-on: ubuntu-latest | |
name: Compile Test Node and Contracts | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Add solc | |
run: | | |
sudo add-apt-repository -y ppa:ethereum/ethereum | |
sudo apt install solc | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
targets: x86_64-unknown-linux-gnu | |
- name: Install rust nightly | |
run: rustup toolchain install nightly --profile minimal --no-self-update | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
.test-node-subtree | |
tests | |
shared-key: "cache" | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.0 | |
- name: Install dependencies and build node | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: build-essential cmake pkg-config libssl-dev clang | |
version: 1.0 | |
- name: Build node | |
run: | | |
make build-node | |
precompiles: | |
name: Run Tests For Precompiles | |
runs-on: ubuntu-latest | |
needs: [compile-node, compile-tests] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
targets: x86_64-unknown-linux-gnu | |
- name: Install rust nightly | |
run: rustup toolchain install nightly --profile minimal --no-self-update | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
.test-node-subtree | |
tests | |
shared-key: "cache" | |
- name: Install rust nightly | |
run: rustup toolchain install nightly --profile minimal --no-self-update | |
- name: "Run tests" | |
run: | | |
make test-ci | |
- name: Print era test node logs | |
id: stop_node | |
if: always() | |
run: | | |
cat era_test_node_output.log |