2022-05-30 04:58:14 +08:00
|
|
|
name: Test sample Kotlin DSL project
|
2021-09-13 00:52:53 +08:00
|
|
|
|
|
|
|
on:
|
2022-05-28 22:55:58 +08:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
2022-05-30 02:13:55 +08:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2022-05-30 03:47:45 +08:00
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
2021-09-13 00:52:53 +08:00
|
|
|
|
|
|
|
env:
|
2022-05-28 22:55:58 +08:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: sample-kotlin-dsl-${{ inputs.cache-key-prefix }}
|
2021-10-28 06:07:24 +08:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-09-13 00:52:53 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
2021-10-22 02:08:17 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-30 02:13:55 +08:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-22 02:08:17 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-13 00:52:53 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2021-09-13 00:52:53 +08:00
|
|
|
uses: ./
|
2022-06-05 01:37:13 +08:00
|
|
|
with:
|
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Build kotlin-dsl project
|
2022-04-05 23:45:02 +08:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
2021-12-18 11:37:32 +08:00
|
|
|
run: ./gradlew build
|
2021-09-13 00:52:53 +08:00
|
|
|
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
2021-10-22 02:08:17 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-30 02:13:55 +08:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-22 02:08:17 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-13 00:52:53 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2021-09-13 00:52:53 +08:00
|
|
|
uses: ./
|
2022-05-28 22:55:58 +08:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Build kotlin-dsl project
|
2022-04-05 23:45:02 +08:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
2021-12-18 11:37:32 +08:00
|
|
|
run: ./gradlew build --offline
|