GitHub Actions CI using EC2 GPU nodes #1
Workflow file for this run
This file contains hidden or 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
name: GPU tests on multiple instance types | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
test-g5: | |
name: Test on g5.2xlarge (A10G) | |
uses: ./.github/workflows/test.yaml | |
with: | |
instance_type: g5.2xlarge | |
secrets: inherit | |
test-g6: | |
name: Test on g6.2xlarge (L4) | |
uses: ./.github/workflows/test.yaml | |
with: | |
instance_type: g6.2xlarge | |
secrets: inherit |