[MINOR] fix annoying gradle warning "Errors occurred while build effective model" #1299
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: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
# - name: Cache Gradle dependencies | |
# uses: actions/cache@v3 | |
# with: | |
# path: ~/.gradle/caches | |
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
# restore-keys: ${{ runner.os }}-gradle | |
- 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: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Cache Gradle dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- 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: test-report | |
path: acceptance-tests/build/reports/tests/ | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: | | |
${{ secrets.CORSET_SSH_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' | |
- name: Cache Gradle dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Install Rust | |
run: sudo apt-get update && sudo apt-get install -y cargo | |
- name: Install corset | |
run: cargo install --git ssh://git@github.com/Consensys/corset.git --locked | |
- 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: test-report | |
path: 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 | |
cache: gradle | |
- name: spotless | |
run: ./gradlew --no-daemon --parallel clean spotlessCheck |