Precompute G1 point for miller loop #576
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
on: | |
merge_group: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["*"] | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
precompiles-in-git-ignore: | |
name: Every pre-compile artifact is in git-ignore | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Run check | |
run: | | |
make check-git-ignore | |
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 | |
check-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 | |
precompiles: | |
name: Compile node and run tests | |
runs-on: ubuntu-latest | |
needs: [check-tests, precompiles-in-git-ignore] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Add solc | |
run: | | |
sudo add-apt-repository -y ppa:ethereum/ethereum | |
sudo apt-get install solc | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
targets: x86_64-unknown-linux-gnu | |
- 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: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.0 | |
- name: Install dependencies and build node + precompiles | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: build-essential make cross-gcc-dev cmake pkg-config libssl-dev clang | |
version: 1.0 | |
- name: Start nodes + Run tests | |
run: | | |
make test-ci | |
- name: Print era test node logs | |
run: | | |
cat era_node.log |