2021-09-27 21:33:22 -04:00
|
|
|
name: Test caching with Kotlin DSL
|
2021-09-12 12:52:53 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-12-08 16:20:13 -05:00
|
|
|
types: [assigned, review_requested]
|
2021-09-12 12:52:53 -04:00
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-03-14 15:28:54 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
2021-09-12 12:52:53 -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-09-12 12:52:53 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-12 12:52:53 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-09-12 12:52:53 -04:00
|
|
|
uses: ./
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Build kotlin-dsl project
|
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
2021-12-17 22:37:32 -05:00
|
|
|
run: ./gradlew build
|
2021-09-12 12:52:53 -04:00
|
|
|
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-12 12:52:53 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-09-12 12:52:53 -04:00
|
|
|
uses: ./
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Build kotlin-dsl project
|
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
2021-12-17 22:37:32 -05:00
|
|
|
run: ./gradlew build --offline
|