Apply final exponentiation only to accumulator #250 #544
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: | |
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] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Add solc to path | |
run: | | |
chmod +x ./ci/solc | |
echo "export PATH=\$PATH:$(pwd)/ci" >> $GITHUB_PATH | |
- 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: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.0 | |
- name: Install yarn | |
run: npm install -g yarn | |
- 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 | |
- name: Run tests | |
run: | | |
make test-ci | |
- name: Print era test node logs | |
run: | | |
cat era_node.log |