2021-09-28 01:33:22 +00:00
|
|
|
name: Test caching with Kotlin DSL
|
2021-09-12 16:52:53 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
2021-10-27 22:07:24 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-09-12 16:52:53 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Use kotlin-dsl project to verify caching of generated jars and compiled scripts
|
|
|
|
seed-build:
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-12 16:52:53 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build kotlin-dsl project
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/kotlin-dsl
|
|
|
|
arguments: test
|
|
|
|
|
|
|
|
# Check that the build can run --offline
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-12 16:52:53 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build kotlin-dsl project
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/kotlin-dsl
|
|
|
|
arguments: test --offline
|