Nightly Tests #3
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: Nightly Tests | |
on: | |
schedule: | |
- cron: "0 22 * * *" | |
workflow_dispatch: | |
env: | |
CARGO_NET_GIT_FETCH_WITH_CLI: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest-128 | |
steps: | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.CONSTRAINTS_SSH_KEY }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Install Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
# The asset URL for the latest release can be found with: | |
# curl -L -H "Accept: application/vnd.github+json" \ | |
# -H "Authorization: Bearer YOUR_GH_API_TOKEN" \ | |
# -H "X-GitHub-Api-Version: 2022-11-28" \ | |
# https://api.github.com/repos/ConsenSys/corset/releases/latest | |
# | jq '.assets[] | select(.name|endswith("x86_64-unknown-linux-musl.tar.gz")) | .url' | |
- name: Install Corset | |
run: RUSTFLAGS=-Awarnings cargo install --git ssh://[email protected]/ConsenSys/corset --tag v9.7.13 --locked --force | |
# run: | | |
# curl -L \ | |
# -H "Accept: application/octet-stream" \ | |
# -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ | |
# -H "X-GitHub-Api-Version: 2022-11-28" \ | |
# -o corset.tar.gz \ | |
# https://api.github.com/repos/Consensys/corset/releases/assets/151396061 | |
# tar xzf corset.tar.gz | |
# mv corset $HOME | |
# echo $HOME >> $GITHUB_PATH | |
- name: Run Nightly tests | |
run: ./gradlew nightlyTests | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
CORSET_FLAGS: fields,expand,expand,expand | |
NIGHTLY_TESTS_PARALLELISM: 4 | |
- name: Upload test report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: unit-test-report | |
path: build/reports/tests/**/* | |
go-corset-tests: | |
runs-on: ubuntu-latest-128 | |
continue-on-error: true | |
steps: | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.CONSTRAINTS_SSH_KEY }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Install Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install Corset | |
run: RUSTFLAGS=-Awarnings cargo install --git ssh://[email protected]/ConsenSys/corset --tag v9.7.13 --locked --force | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
- name: Install Go Corset | |
run: | |
go install github.com/consensys/go-corset/cmd/go-corset@latest | |
- name: Run Nightly tests | |
run: GOMEMLIMIT=196GiB ./gradlew nightlyTests | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
CORSET_FLAGS: disable | |
GOCORSET_FLAGS: -wd --ansi-escapes=false --report --air |