2022-05-29 16:58:14 -04:00
|
|
|
name: Test action inputs
|
2021-10-15 14:09:51 -04: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-10-15 14:09:51 -04:00
|
|
|
|
|
|
|
env:
|
2022-05-28 10:55:58 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: action-inputs-${{ inputs.cache-key-prefix }}
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-10-15 14:09:51 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
action-inputs:
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 14:09:51 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2021-10-15 14:09:51 -04:00
|
|
|
- name: Invoke with multi-line arguments
|
|
|
|
uses: ./
|
|
|
|
with:
|
2022-04-05 11:45:02 -04:00
|
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
2021-10-15 14:09:51 -04:00
|
|
|
arguments: |
|
|
|
|
--configuration-cache
|
|
|
|
--build-cache
|
2021-10-15 14:24:41 -04:00
|
|
|
-DsystemProperty=FOO
|
|
|
|
-PgradleProperty=BAR
|
2021-10-15 14:09:51 -04:00
|
|
|
test
|
|
|
|
jar
|