2021-10-20 17:32:15 -04:00
|
|
|
name: Test caching configuration
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-12-08 16:20:13 -05:00
|
|
|
types: [assigned, review_requested]
|
2021-10-20 17:32:15 -04:00
|
|
|
push:
|
2022-04-02 14:49:55 -04:00
|
|
|
paths:
|
2022-04-05 11:45:02 -04:00
|
|
|
- '.github/**'
|
2022-04-02 14:49:55 -04:00
|
|
|
- 'dist/**'
|
2021-10-20 17:32:15 -04:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-03-14 15:28:54 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
2021-10-20 17:32:15 -04:00
|
|
|
env:
|
2022-01-18 12:52:22 -05:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
|
2021-10-27 18:07:24 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-10-20 17:32:15 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-20 17:32:15 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-10-20 17:32:15 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-12-29 15:36:24 -05:00
|
|
|
# Add "enterprise" to main cache entry but omit "notifications"
|
2021-10-27 18:07:24 -04:00
|
|
|
gradle-home-cache-includes: |
|
2021-10-29 09:29:57 -04:00
|
|
|
caches
|
2021-12-29 15:36:24 -05:00
|
|
|
enterprise
|
|
|
|
# Exclude build-cache from main cache entry
|
2021-10-27 18:07:24 -04:00
|
|
|
gradle-home-cache-excludes: |
|
2021-10-29 09:29:57 -04:00
|
|
|
caches/build-cache-1
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 12:29:13 -05:00
|
|
|
run: ./gradlew test
|
2021-10-20 17:32:15 -04:00
|
|
|
|
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-20 17:32:15 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-10-20 17:32:15 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2022-01-17 14:37:19 -05:00
|
|
|
# Use the same configuration as used in the seed build
|
2021-10-27 18:07:24 -04:00
|
|
|
gradle-home-cache-includes: |
|
2021-10-29 09:29:57 -04:00
|
|
|
caches
|
2021-12-29 15:36:24 -05:00
|
|
|
enterprise
|
2021-10-27 18:07:24 -04:00
|
|
|
gradle-home-cache-excludes: |
|
2021-10-29 09:29:57 -04:00
|
|
|
caches/build-cache-1
|
2021-12-08 12:29:13 -05:00
|
|
|
cache-read-only: true
|
|
|
|
- name: Execute Gradle build with --offline
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 12:29:13 -05:00
|
|
|
run: ./gradlew test --offline
|
2021-10-20 17:32:15 -04:00
|
|
|
|
2022-01-17 14:37:19 -05:00
|
|
|
# Test that build scans are captured when caching is explicitly disabled
|
2022-01-17 14:09:38 -05:00
|
|
|
cache-disabled:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2022-01-17 14:09:38 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-disabled: true
|
|
|
|
- name: Run Gradle build
|
|
|
|
id: gradle
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
|
2022-01-17 14:09:38 -05:00
|
|
|
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
|
|
|
|
- name: Check build scan url is captured
|
|
|
|
if: ${{ !steps.gradle.outputs.build-scan-url }}
|
|
|
|
uses: actions/github-script@v3
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.setFailed('No build scan detected')
|
2022-01-17 14:37:19 -05:00
|
|
|
|
|
|
|
# Test that build scans are captured when caching is disabled because Gradle User Home already exists
|
|
|
|
cache-disabled-pre-existing-gradle-home:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Create dummy Gradle User Home
|
|
|
|
run: mkdir -p ~/.gradle/caches
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
- name: Run Gradle build
|
|
|
|
id: gradle
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
|
2022-01-17 14:37:19 -05:00
|
|
|
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
|
|
|
|
- name: Check build scan url is captured
|
|
|
|
if: ${{ !steps.gradle.outputs.build-scan-url }}
|
|
|
|
uses: actions/github-script@v3
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.setFailed('No build scan detected')
|
2022-01-20 11:36:57 -05:00
|
|
|
|
|
|
|
# Test seed the cache with cache-write-only and verify with cache-read-only
|
|
|
|
seed-build-write-only:
|
|
|
|
env:
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-write-only-
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2022-01-20 11:36:57 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-write-only: true
|
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2022-01-20 11:36:57 -05:00
|
|
|
run: ./gradlew test
|
|
|
|
|
|
|
|
verify-write-only-build:
|
|
|
|
env:
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-write-only-
|
|
|
|
needs: seed-build-write-only
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2022-01-20 11:36:57 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
|
|
|
- name: Execute Gradle build with --offline
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2022-01-20 11:36:57 -05:00
|
|
|
run: ./gradlew test --offline
|
|
|
|
|