Skip to content

Commit

Permalink
ci: add mainline integration test workflow (#302)
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Moore <[email protected]>
  • Loading branch information
moorec-aws authored Apr 16, 2024
1 parent 3c700b0 commit e687917
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/mainline_integration_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Mainline Integration Test

on:
workflow_dispatch:

jobs:
MainlineIntegrationTest:
name: Integration Test
runs-on: ubuntu-latest
environment: mainline
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
with:
ref: mainline
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_CODEBUILD_MAINLINE_INTEG_ROLE }}
aws-region: us-west-2
mask-aws-account-id: true
- name: Run CodeBuild
uses: aws-actions/aws-codebuild-run-build@v1
with:
project-name: deadline-cloud-dev-IntegTest
hide-cloudwatch-logs: true
env-vars-for-codebuild: |
TEST_TYPE
env:
TEST_TYPE: WHEEL

0 comments on commit e687917

Please sign in to comment.