Skip to content

Commit

Permalink
uncomment codebuild-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bencrabtree committed Mar 15, 2024
1 parent d2dd9be commit fa6a3ba
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/codebuild-ci.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
# name: PR Checks
# on:
# pull_request_target:
name: PR Checks
on:
pull_request_target:

# concurrency:
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref }}
# cancel-in-progress: true
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref }}
cancel-in-progress: true

# permissions:
# id-token: write # This is required for requesting the JWT
permissions:
id-token: write # This is required for requesting the JWT

# jobs:
# codestyle-doc-tests:
# 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: 10800
# - name: Run Codestyle & Doc Tests
# uses: aws-actions/aws-codebuild-run-build@v1
# with:
# project-name: sagemaker-python-sdk-ci-codestyle-doc-tests
# source-version-override: 'pr/${{ github.event.pull_request.number }}'
# unit-tests:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# python-version: ["py38", "py39", "py310"]
# 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: 10800
# - name: Run Unit Tests
# uses: aws-actions/aws-codebuild-run-build@v1
# with:
# project-name: sagemaker-python-sdk-ci-unit-tests
# source-version-override: 'pr/${{ github.event.pull_request.number }}'
# env-vars-for-codebuild: |
# PY_VERSION
# env:
# PY_VERSION: ${{ matrix.python-version }}
jobs:
codestyle-doc-tests:
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: 10800
- name: Run Codestyle & Doc Tests
uses: aws-actions/aws-codebuild-run-build@v1
with:
project-name: sagemaker-python-sdk-ci-codestyle-doc-tests
source-version-override: "pr/${{ github.event.pull_request.number }}"
unit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["py38", "py39", "py310"]
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: 10800
- name: Run Unit Tests
uses: aws-actions/aws-codebuild-run-build@v1
with:
project-name: sagemaker-python-sdk-ci-unit-tests
source-version-override: "pr/${{ github.event.pull_request.number }}"
env-vars-for-codebuild: |
PY_VERSION
env:
PY_VERSION: ${{ matrix.python-version }}

0 comments on commit fa6a3ba

Please sign in to comment.