forked from aws/sagemaker-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
134 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Run Local Mode Tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
prNumber: | ||
required: true | ||
type: number | ||
commitSha: | ||
required: true | ||
type: string | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ inputs.prNumber }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
|
||
jobs: | ||
local-mode-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 Test | ||
uses: aws-actions/aws-codebuild-run-build@v1 | ||
with: | ||
project-name: ${{ github.repository.name }}-ci-localmode-tests | ||
source-version-override: 'refs/pull/${{ inputs.prNumber }}/head^{${{ inputs.commitSha }}}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Run Extras | ||
|
||
on: | ||
pull_request_review: | ||
types: [submitted] | ||
|
||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
|
||
jobs: | ||
check-comment: | ||
if: github.event.review.body == '/run slow' || github.event.review.body == '/run localmode' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.MONITORING_AWS_ROLE_ARN }} | ||
aws-region: us-west-2 | ||
- name: Collaborator Check | ||
uses: actions/github-script@v7 | ||
id: collab-check | ||
env: | ||
GH_USER_LOGIN: ${{ github.event.review.user.login }} | ||
with: | ||
github-token: ${{ secrets.COLLAB_CHECK_TOKEN }} | ||
result-encoding: string | ||
script: | | ||
try { | ||
const res = await github.rest.repos.checkCollaborator({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
username: "${{ env.GH_USER_LOGIN }}", | ||
}); | ||
console.log("Verifed user is a repo collaborator.") | ||
return | ||
} catch (error) { | ||
if (error.message == "Bad credentials") { | ||
console.log("Token Expired. Please update the COLLAB_CHECK_TOKEN secret.") | ||
const { execSync } = require('child_process') | ||
execSync('aws cloudwatch put-metric-data --namespace "GitHubActions" --metric-name "BadCredentials" --value 1') | ||
} | ||
throw new Error("Collaborator status could not be verified.") | ||
} | ||
run-slow-tests: | ||
needs: [check-comment] | ||
if: needs.check-comment.result == 'success' && github.event.review.body == '/run slow' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run Slow Tests | ||
uses: ./.github/workflows/slow-tests.yml | ||
with: | ||
prNumber: ${{ github.event.pull_request.number }} | ||
commitSha: ${{ github.event.pull_request.head.sha }} | ||
run-localmode-tests: | ||
needs: [check-comment] | ||
if: needs.check-comment.result == 'success' && github.event.review.body == '/run localmode' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run Local Mode Tests | ||
uses: ./.github/workflows/localmode-tests.yml | ||
with: | ||
prNumber: ${{ github.event.pull_request.number }} | ||
commitSha: ${{ github.event.pull_request.head.sha }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Run Slow Tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
prNumber: | ||
required: true | ||
type: number | ||
commitSha: | ||
required: true | ||
type: string | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ inputs.prNumber }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
|
||
jobs: | ||
local-mode-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 Test | ||
uses: aws-actions/aws-codebuild-run-build@v1 | ||
with: | ||
project-name: ${{ github.repository.name }}-ci-slow-tests | ||
source-version-override: 'refs/pull/${{ inputs.prNumber }}/head^{${{ inputs.commitSha }}}' |