Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 committed Nov 7, 2024
1 parent 5559e53 commit 0403f20
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 15 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci_codebuild-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: AWS CodeBuild CI

on:
pull_request:
push:
# Run once a day
schedule:
- cron: '0 0 * * *'

permissions:
id-token: write
contents: read

jobs:
codebuild-tests:
name: AWS CodeBuild CI
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
aws-region: us-west-2
role-duration-seconds: 3600
- name: Run CodeBuild CI
uses: aws-actions/aws-codebuild-run-build@v1
timeout-minutes: 60
with:
project-name: python-esdk
15 changes: 0 additions & 15 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,3 @@ jobs:
env:
TOXENV: ${{ matrix.category }}
run: tox -- -vv
codebuild-tests:
name: CodeBuild CI
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
aws-region: us-west-2
role-duration-seconds: 3600
- name: Run CodeBuild CI
uses: aws-actions/aws-codebuild-run-build@v1
timeout-minutes: 60
with:
project-name: python-esdk

0 comments on commit 0403f20

Please sign in to comment.