Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit ca59891

Browse files
authored
Updated cloud config (#81)
1 parent 75c5310 commit ca59891

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/execute-test-script.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,12 @@ jobs:
6868
echo 'runner_labels=["self-hosted", "amd32c", "aws"]' >> $GITHUB_OUTPUT;;
6969
amd64c)
7070
echo 'runner_labels=["self-hosted", "amd64c", "aws"]' >> $GITHUB_OUTPUT;;
71-
nvidia)
72-
echo 'runner_labels=["self-hosted", "nvidia", "aws"]' >> $GITHUB_OUTPUT;;
71+
genoa60c)
72+
echo 'runner_labels=["self-hosted", "genoa", "60c", "gcp"]' >> $GITHUB_OUTPUT;;
73+
a100)
74+
echo 'runner_labels=["self-hosted", "nvidia", "a100"]' >> $GITHUB_OUTPUT;;
75+
v100)
76+
echo 'runner_labels=["self-hosted", "nvidia", "v100"]' >> $GITHUB_OUTPUT;;
7377
*)
7478
echo "runner_labels=unknown" >> $GITHUB_OUTPUT;;
7579
esac

.github/workflows/test_amd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ on:
1010
runner_type:
1111
description: Type of runner to use
1212
required: true
13-
default: amd64c
13+
default: genoa60c
1414
type: choice
1515
options:
1616
- amd32c
1717
- amd64c
18+
- genoa60c
1819
shutdown_cloud_runner:
1920
description: Shutdown AWS cluster
2021
default: true

.github/workflows/test_nvidia.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
compiler: ${{ matrix.type.compiler }}
3939
device: ${{ matrix.type.device }}
4040
tag: ${{ inputs.tag }}
41-
runner_type: nvidia
41+
runner_type: a100
4242
test_script: ${{ matrix.test_script }}
4343
secrets:
4444
DB_URL: ${{ secrets.DB_URL }}
4545

4646
shutdown:
47-
runs-on: [self-hosted, aws, nvidia]
47+
runs-on: a100
4848
if: inputs.shutdown_cloud_runner
4949
needs: mlp_test
5050
steps:

0 commit comments

Comments
 (0)