File tree Expand file tree Collapse file tree 2 files changed +31
-17
lines changed Expand file tree Collapse file tree 2 files changed +31
-17
lines changed Original file line number Diff line number Diff line change
1
+ name : AWS CodeBuild CI Integration Tests
2
+ on :
3
+ pull_request :
4
+ merge_group :
5
+ push :
6
+ branches :
7
+ - master
8
+ paths :
9
+ - ' **/*.java'
10
+
11
+ permissions :
12
+ id-token : write
13
+
14
+ jobs :
15
+ integration-tests :
16
+ if : github.repository == 'aws/aws-sdk-java-v2'
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Configure AWS Credentials
20
+ uses : aws-actions/configure-aws-credentials@v4
21
+ with :
22
+ role-to-assume : ${{ secrets.CI_AWS_ROLE_ARN }}
23
+ aws-region : us-west-2
24
+ role-duration-seconds : 7200
25
+ - name : Run Integration Test build
26
+ uses : aws-actions/aws-codebuild-run-build@v1
27
+ timeout-minutes : 180
28
+ with :
29
+ project-name : aws-sdk-java-v2-IntegrationTest-JDK8
30
+ hide-cloudwatch-logs : true
31
+
Original file line number Diff line number Diff line change 29
29
timeout-minutes : 120
30
30
with :
31
31
project-name : aws-sdk-java-v2
32
- integration-tests :
33
- if : github.repository == 'aws/aws-sdk-java-v2'
34
- runs-on : ubuntu-latest
35
- steps :
36
- - name : Configure AWS Credentials
37
- uses : aws-actions/configure-aws-credentials@v4
38
- with :
39
- role-to-assume : ${{ secrets.CI_AWS_ROLE_ARN }}
40
- aws-region : us-west-2
41
- role-duration-seconds : 7200
42
- - name : Run Integration Test build
43
- uses : aws-actions/aws-codebuild-run-build@v1
44
- hide-cloudwatch-logs : true
45
- timeout-minutes : 180
46
- with :
47
- project-name : aws-sdk-java-v2-IntegrationTest-JDK8
48
-
49
32
jdk11-build :
50
33
if : github.repository == 'aws/aws-sdk-java-v2'
51
34
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments