File tree Expand file tree Collapse file tree 4 files changed +38
-16
lines changed Expand file tree Collapse file tree 4 files changed +38
-16
lines changed Original file line number Diff line number Diff line change 1
1
name : Run experiment 1
2
+ description : ' Run Gradle Experiment 1'
2
3
3
4
inputs :
4
5
repositoryUrl :
6
+ description : Project repository URL
5
7
required : true
6
- type : string
7
8
branch :
9
+ description : Git Branch
8
10
required : true
9
- type : string
10
11
task :
12
+ description : Gradle task
11
13
required : true
12
- type : string
13
14
gradleEnterpriseUrl :
15
+ description : Gradle Enterprise URL
14
16
required : true
15
- type : string
17
+ shell :
18
+ description : Caller shell (default bash)
19
+ required : false
20
+ default : ' bash'
16
21
17
22
runs :
18
23
using : " composite"
21
26
run : |
22
27
cd gradle-enterprise-gradle-build-validation
23
28
./01-validate-incremental-building.sh -r ${{ inputs.repositoryUrl }} -b ${{ inputs.branch }} -t ${{ inputs.task }} -s ${{ inputs.gradleEnterpriseUrl }}
24
- shell : bash
29
+ shell : ${{ inputs.shell }}
Original file line number Diff line number Diff line change 1
1
name : Run experiment 2
2
+ description : ' Run Gradle Experiment 2'
2
3
3
4
inputs :
4
5
repositoryUrl :
6
+ description : Project repository URL
5
7
required : true
6
- type : string
7
8
branch :
9
+ description : Git Branch
8
10
required : true
9
- type : string
10
11
task :
12
+ description : Gradle task
11
13
required : true
12
- type : string
13
14
gradleEnterpriseUrl :
15
+ description : Gradle Enterprise URL
14
16
required : true
15
- type : string
17
+ shell :
18
+ description : Caller shell (default bash)
19
+ required : false
20
+ default : ' bash'
16
21
17
22
runs :
18
23
using : " composite"
21
26
run : |
22
27
cd gradle-enterprise-gradle-build-validation
23
28
./02-validate-local-build-caching-same-location.sh -r ${{ inputs.repositoryUrl }} -b ${{ inputs.branch }} -t ${{ inputs.task }} -s ${{ inputs.gradleEnterpriseUrl }}
24
- shell : bash
29
+ shell : ${{ inputs.shell }}
Original file line number Diff line number Diff line change 1
1
name : Run experiment 3
2
+ description : ' Run Gradle Experiment 3'
2
3
3
4
inputs :
4
5
repositoryUrl :
6
+ description : Project repository URL
5
7
required : true
6
- type : string
7
8
branch :
9
+ description : Git Branch
8
10
required : true
9
- type : string
10
11
task :
12
+ description : Gradle task
11
13
required : true
12
- type : string
13
14
gradleEnterpriseUrl :
15
+ description : Gradle Enterprise URL
14
16
required : true
15
- type : string
17
+ shell :
18
+ description : Caller shell (default bash)
19
+ required : false
20
+ default : ' bash'
16
21
17
22
runs :
18
23
using : " composite"
21
26
run : |
22
27
cd gradle-enterprise-gradle-build-validation
23
28
./03-validate-local-build-caching-different-locations.sh -r ${{ inputs.repositoryUrl }} -b ${{ inputs.branch }} -t ${{ inputs.task }} -s ${{ inputs.gradleEnterpriseUrl }}
24
- shell : bash
29
+ shell : ${{ inputs.shell }}
Original file line number Diff line number Diff line change 1
1
name : Get latest release
2
+ description : ' Install Scripts latest release'
3
+
4
+ inputs :
5
+ shell :
6
+ description : Caller shell (default bash)
7
+ required : false
8
+ default : ' bash'
2
9
3
10
runs :
4
11
using : " composite"
8
15
downloadUrl=$(curl -s https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest | jq -c '.assets[] | select(.content_type == "application/zip")' | jq -r .browser_download_url | grep -v maven)
9
16
curl -s -L -o gradle-enterprise-gradle-build-validation.zip $downloadUrl
10
17
unzip -q -o gradle-enterprise-gradle-build-validation.zip
11
- shell : bash
18
+ shell : ${{ inputs.shell }}
You can’t perform that action at this time.
0 commit comments