Add precompile tests to CI #508
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 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, 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: Tests check | |
runs-on: ubuntu-latest | |
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: Run cargo check for tests | |
run: cd tests && cargo check | |
compile-node: | |
runs-on: ubuntu-latest | |
name: Compile node and contracts | |
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: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.0 | |
- name: Install dependencies and build node | |
run: | | |
sudo add-apt-repository -y ppa:ethereum/ethereum | |
sudo apt-get update | |
sudo apt-get install -y solc build-essential cmake pkg-config libssl-dev clang | |
npm i - node-gyp | |
make build-node | |
precompiles: | |
name: "Precompiles tests" | |
runs-on: ubuntu-latest | |
needs: compile-node | |
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: "Run tests" | |
run: | | |
make test-ci |