-
Notifications
You must be signed in to change notification settings - Fork 997
Expand file tree
/
Copy pathcodebuild-ci-integration-tests.yml
More file actions
45 lines (42 loc) · 1.31 KB
/
codebuild-ci-integration-tests.yml
File metadata and controls
45 lines (42 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: AWS CodeBuild CI Integration Tests
on:
pull_request:
merge_group:
push:
branches:
- master
permissions:
id-token: write
jobs:
integration-tests:
if: github.repository == 'aws/aws-sdk-java-v2'
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
aws-region: us-west-2
role-duration-seconds: 7200
- name: Run Integration Test build
uses: aws-actions/aws-codebuild-run-build@v1
timeout-minutes: 180
with:
project-name: aws-sdk-java-v2-IntegrationTest-JDK8
hide-cloudwatch-logs: true
integration-tests-apache5:
if: github.repository == 'aws/aws-sdk-java-v2'
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
aws-region: us-west-2
role-duration-seconds: 7200
- name: Run Integration Test build with Apache5
uses: aws-actions/aws-codebuild-run-build@v1
timeout-minutes: 180
with:
project-name: aws-sdk-java-v2-IntegrationTest-JDK8-Apache5
hide-cloudwatch-logs: true