Skip to content

Commit 505723b

Browse files
committed
Add Composite Experiment 5
Signed-off-by: Jerome Prinet <[email protected]>
1 parent 905a72c commit 505723b

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/composite/exp5/action.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Run experiment 5
2+
description: 'Run Gradle Experiment 5'
3+
4+
inputs:
5+
repositoryUrl:
6+
description: Project repository URL
7+
required: true
8+
branch:
9+
description: Git Branch
10+
required: true
11+
task:
12+
description: Gradle task
13+
required: true
14+
seedUrl:
15+
description: Seed build scan URL
16+
required: true
17+
projectDir:
18+
description: Project directory
19+
required: false
20+
default: .
21+
gradleEnterpriseUrl:
22+
description: Gradle Enterprise URL
23+
required: true
24+
gradleCacheNodeUrl:
25+
description: Gradle cache node URL
26+
required: true
27+
28+
runs:
29+
using: "composite"
30+
steps:
31+
- name: Run Gradle Experiment 5
32+
run: |
33+
cd gradle-enterprise-gradle-build-validation
34+
./05-validate-remote-build-caching-ci-local.sh -r ${{ inputs.repositoryUrl }} -b ${{ inputs.branch }} -c HEAD -t ${{ inputs.task }} -p ${{ inputs.projectDir }} -1 ${{ inputs.seedUrl }} -s ${{ inputs.gradleEnterpriseUrl }} -u ${{ inputs.gradleCacheNodeUrl }}
35+
shell: bash

0 commit comments

Comments
 (0)