2022-05-29 16:58:14 -04:00
|
|
|
name: Test provision Gradle versions
|
2021-12-08 12:29:13 -05:00
|
|
|
|
|
|
|
on:
|
2022-05-28 10:55:58 -04:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
2022-05-29 14:13:55 -04:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2022-05-29 15:47:45 -04:00
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
2021-12-08 12:29:13 -05:00
|
|
|
|
|
|
|
env:
|
2022-05-29 16:58:14 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: provision-gradle-versions-${{ inputs.cache-key-prefix }}
|
2022-05-28 10:55:58 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-12-08 12:29:13 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Tests for executing with different Gradle versions.
|
|
|
|
# Each build verifies that it is executed with the expected Gradle version.
|
|
|
|
provision-gradle:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-08 12:29:13 -05:00
|
|
|
include:
|
|
|
|
- os: windows-latest
|
|
|
|
script-suffix: '.bat'
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle with v6.9
|
|
|
|
uses: ./
|
|
|
|
with:
|
2022-06-04 13:37:13 -04:00
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2021-12-08 12:29:13 -05:00
|
|
|
gradle-version: 6.9
|
|
|
|
- name: Test uses Gradle v6.9
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper
|
2021-12-08 12:29:13 -05:00
|
|
|
run: gradle help "-DgradleVersionCheck=6.9"
|
|
|
|
- name: Setup Gradle with v7.1.1
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
gradle-version: 7.1.1
|
|
|
|
- name: Test uses Gradle v7.1.1
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper
|
2021-12-08 12:29:13 -05:00
|
|
|
run: gradle help "-DgradleVersionCheck=7.1.1"
|
|
|
|
- name: Setup Gradle with release-candidate
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
gradle-version: release-candidate
|
|
|
|
- name: Test use release-candidate
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper
|
2021-12-08 12:29:13 -05:00
|
|
|
run: gradle help
|
2023-08-19 13:50:40 -04:00
|
|
|
- name: Setup Gradle with current
|
|
|
|
id: gradle-current
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
gradle-version: current
|
|
|
|
- name: Check current version output parameter
|
|
|
|
if: ${{ !startsWith(steps.gradle-current.outputs.gradle-version , '8.') }}
|
2023-11-13 17:17:56 -05:00
|
|
|
uses: actions/github-script@v7
|
2023-08-19 13:50:40 -04:00
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.setFailed('Gradle version parameter not set correctly: value was "${{ steps.gradle-current.outputs.gradle-version }}"')
|
2021-12-08 12:29:13 -05:00
|
|
|
|
|
|
|
gradle-versions:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-06-05 00:07:28 -04:00
|
|
|
gradle: [7.3, 6.9, 5.6.4, 4.10.3, 3.5.1]
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-08 12:29:13 -05:00
|
|
|
include:
|
|
|
|
- gradle: 5.6.4
|
|
|
|
build-root-suffix: -gradle-5
|
|
|
|
- gradle: 4.10.3
|
|
|
|
build-root-suffix: -gradle-4
|
2022-06-05 00:07:28 -04:00
|
|
|
- gradle: 3.5.1
|
|
|
|
build-root-suffix: -gradle-4
|
2021-12-08 12:29:13 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-06-05 00:07:28 -04:00
|
|
|
- name: Setup Java
|
2023-12-04 17:49:40 -05:00
|
|
|
uses: actions/setup-java@v4
|
2022-06-05 00:07:28 -04:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 8
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2023-08-19 13:50:40 -04:00
|
|
|
id: setup-gradle
|
2021-12-08 12:29:13 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2022-06-04 13:37:13 -04:00
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2021-12-08 12:29:13 -05:00
|
|
|
gradle-version: ${{ matrix.gradle }}
|
2023-08-19 13:50:40 -04:00
|
|
|
- name: Check output parameter
|
|
|
|
if: ${{ steps.setup-gradle.outputs.gradle-version != matrix.gradle }}
|
2023-11-13 17:17:56 -05:00
|
|
|
uses: actions/github-script@v7
|
2023-08-19 13:50:40 -04:00
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.setFailed('Gradle version parameter not set correctly: value was "${{ steps.setup-gradle.outputs.gradle-version }}"')
|
2021-12-08 12:29:13 -05:00
|
|
|
- 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 }}
|
2021-12-08 12:29:13 -05:00
|
|
|
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
|
2023-07-22 10:49:39 -04:00
|
|
|
- name: Check Build Scan url
|
2021-12-08 12:29:13 -05:00
|
|
|
if: ${{ !steps.gradle.outputs.build-scan-url }}
|
2023-11-13 17:17:56 -05:00
|
|
|
uses: actions/github-script@v7
|
2021-12-08 12:29:13 -05:00
|
|
|
with:
|
|
|
|
script: |
|
2023-07-22 10:49:39 -04:00
|
|
|
core.setFailed('No Build Scan detected')
|
2021-12-08 12:29:13 -05:00
|
|
|
|
|
|
|
|