In the txpool, reject a tx if its simulation fails #7
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: gradle | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
CARGO_NET_GIT_FETCH_WITH_CLI: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
- name: Set up GCC | |
uses: egor-tensin/setup-gcc@v1 | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Build without tests | |
run: ./gradlew build -x test -x spotlessCheck | |
env: | |
JAVA_OPTS: -Xmx2g -Dorg.gradle.daemon=false | |
- name: Store distribution artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: distributions | |
path: arithmetization/build/libs | |
acceptanceTest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
- name: Set up GCC | |
uses: egor-tensin/setup-gcc@v1 | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Run acceptance tests | |
run: ./gradlew :acceptance-tests:acceptanceTests | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
- name: Upload test report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: acceptance-test-report | |
path: acceptance-tests/build/reports/tests/ | |
libCompressTest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
- name: Set up GCC | |
uses: egor-tensin/setup-gcc@v1 | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Run libcompress JNI tests | |
run: ./gradlew :native:compress:test | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
- name: Upload test report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: compress-test-report | |
path: compress/build/reports/tests/ | |
tests: | |
runs-on: ubuntu-latest | |
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 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
# 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: | | |
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/147491099 | |
tar xzf corset.tar.gz | |
mv corset $HOME | |
echo $HOME >> $GITHUB_PATH | |
- name: Run unit tests | |
run: ./gradlew :arithmetization:test | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
- name: Upload test report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: unit-test-report | |
path: arithmetization/build/reports/tests/ | |
spotless: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 17 | |
- name: spotless | |
run: ./gradlew --no-daemon --parallel clean spotlessCheck |