mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 16:20:59 -05:00
bdd89aa34f
- Improve workflow names - Split execution testing from cache testing
36 lines
873 B
YAML
36 lines
873 B
YAML
name: Test caching with Kotlin DSL
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
|
CACHE_DEBUG_ENABLED: true
|
|
|
|
jobs:
|
|
# Use kotlin-dsl project to verify caching of generated jars and compiled scripts
|
|
seed-build:
|
|
runs-on: ubuntu-latest
|
|
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
|
|
runs-on: ubuntu-latest
|
|
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
|