Bump com.google.guava:guava from 27.1-jre to 32.0.0-jre #8
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: Contributor CI Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
# On master/release, we don't want any jobs cancelled so the sha is used to name the group | |
# On PR branches, we cancel the job if new commits are pushed | |
group: ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' ) && format('contributor-pr-base-{0}', github.sha) || format('contributor-pr-{0}', github.ref) }} | |
cancel-in-progress: true | |
env: | |
# Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
# Enable debug for the `gradle-build-action` cache operations | |
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true | |
permissions: {} | |
jobs: | |
build: | |
name: "Compile All" | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: git clone | |
uses: actions/checkout@v4 | |
- id: setup-matrix | |
run: echo "matrix=$(jq -c -f .github/workflows/extract-unit-test-split.jq .teamcity/subprojects.json)" >> $GITHUB_OUTPUT | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- id: determine-sys-prop-args | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
if (context.payload.pull_request && context.payload.pull_request.head.repo.fork) { | |
core.setOutput('sys-prop-args', '-DagreePublicBuildScanTermOfService=yes -DcacheNode=us') | |
} else { | |
core.setOutput('sys-prop-args', '-DcacheNode=us') | |
} | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/master' }} | |
- run: ./gradlew compileAll --no-configuration-cache -DdisableLocalCache=true ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build-receipt.properties | |
path: platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties | |
outputs: | |
matrix: ${{ steps.setup-matrix.outputs.matrix }} | |
sys-prop-args: ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }} | |
sanity-check: | |
name: "Sanity Check on Linux" | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: git clone | |
uses: actions/checkout@v4 | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build-receipt.properties | |
path: incoming-distributions/build-receipt.properties | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/master' }} | |
- run: ./gradlew sanityCheck --no-configuration-cache -DdisableLocalCache=true ${{ needs.build.outputs.sys-prop-args }} | |
unit-test: | |
name: "${{ matrix.bucket.name }} (Unit Test)" | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
matrix: | |
bucket: ${{ fromJson(needs.build.outputs.matrix) }} | |
fail-fast: false | |
steps: | |
- name: git clone | |
uses: actions/checkout@v4 | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build-receipt.properties | |
path: incoming-distributions/build-receipt.properties | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/master' }} | |
- run: ./gradlew ${{ matrix.bucket.tasks }} --no-configuration-cache -DdisableLocalCache=true -PflakyTests=exclude ${{ needs.build.outputs.sys-prop-args }} |