mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 08:11:07 -05:00
272883a7ba
Starting with the `v3` release, this action will delegate to `gradle/actions/setup-gradle`. All repository sources have been migrated to https://github.com/gradle/actions, and are no longer required in this repository. Workflows testing the action functionality have been retained, but any workflows involving building or inspecting code have also been migrated to `gradle/actions`.
35 lines
No EOL
867 B
YAML
35 lines
No EOL
867 B
YAML
name: Test action inputs
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
cache-key-prefix:
|
|
type: string
|
|
runner-os:
|
|
type: string
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
|
|
env:
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: action-inputs-${{ inputs.cache-key-prefix }}
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
|
|
|
jobs:
|
|
action-inputs:
|
|
strategy:
|
|
matrix:
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
- name: Invoke with multi-line arguments
|
|
uses: ./
|
|
with:
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
|
arguments: |
|
|
--configuration-cache
|
|
--build-cache
|
|
-DsystemProperty=FOO
|
|
-PgradleProperty=BAR
|
|
test
|
|
jar |