Skip to content

Commit 628596b

Browse files
authored
chore(cuda): use newer ami (#2131)
1 parent 9b3386b commit 628596b

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

.github/runs-on.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,12 @@ images:
55
owner: "405894839083"
66
name: "arm64-rust-riscv-dev-32gb"
77
ami: "ami-040a96edd406c9478"
8-
# RunsOn nvidia image with cuda 12.9 installed (latest is cuda 13)
9-
# See: https://github.com/runs-on/runner-images-for-aws
10-
ubuntu24-gpu-x64-cuda12-9:
11-
platform: "linux"
12-
arch: "x86_64"
13-
owner: "135269210855"
14-
name: "runs-on-v2.2-ubuntu24-gpu-x64-20250731145109"
15-
ami: "ami-017d4d69faf854c81"
168

179
runners:
1810
# runners for running tests
1911
test-gpu-nvidia:
2012
family: ["g6", "g5", "g4dn", "g6e"]
21-
image: ubuntu24-gpu-x64-cuda12-9
13+
image: ubuntu24-gpu-x64
2214
cpu: [4, 8, 16, 32]
2315
disk: default
2416
spot: capacity-optimized

.github/workflows/base-tests.cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727
jobs:
2828
tests-cuda:
2929
runs-on:
30-
- runs-on=${{ github.run_id }}-base-tests-cuda-${{ github.run_attempt }}/family=g6+g6e/image=ubuntu24-gpu-x64-cuda12-9/extras=s3-cache
30+
- runs-on=${{ github.run_id }}-base-tests-cuda-${{ github.run_attempt }}/family=g6+g6e/image=ubuntu24-gpu-x64/extras=s3-cache
3131

3232
steps:
3333
- uses: runs-on/action@v2

.github/workflows/benchmark-call.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
bench-new:
129129
name: Run benchmark on workflow ref/branch
130130
runs-on:
131-
- runs-on=${{ github.run_id }}-benchcall-${{ github.run_attempt }}-${{ inputs.job_index || inputs.benchmark_id || inputs.benchmark_name || github.event.inputs.benchmark_name }}/family=${{ inputs.instance_type || github.event.inputs.instance_type }}/image=${{ startsWith(inputs.instance_type || github.event.inputs.instance_type, 'g') && 'ubuntu24-gpu-x64-cuda12-9' || contains(inputs.instance_type || github.event.inputs.instance_type, 'g.') && 'ubuntu24-full-arm64' || 'ubuntu24-full-x64' }}/spot=capacity-optimized/extras=s3-cache
131+
- runs-on=${{ github.run_id }}-benchcall-${{ github.run_attempt }}-${{ inputs.job_index || inputs.benchmark_id || inputs.benchmark_name || github.event.inputs.benchmark_name }}/family=${{ inputs.instance_type || github.event.inputs.instance_type }}/image=${{ startsWith(inputs.instance_type || github.event.inputs.instance_type, 'g') && 'ubuntu24-gpu-x64' || contains(inputs.instance_type || github.event.inputs.instance_type, 'g.') && 'ubuntu24-full-arm64' || 'ubuntu24-full-x64' }}/spot=capacity-optimized/extras=s3-cache
132132
steps:
133133
- uses: runs-on/action@v2
134134
##########################################################################

.github/workflows/lints.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ jobs:
123123
124124
- name: Run clang-tidy
125125
run: |
126+
set -eux
127+
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc >/dev/null
128+
echo "deb http://apt.llvm.org/noble/ llvm-toolchain-noble main" | sudo tee /etc/apt/sources.list.d/llvm-toolchain.list
126129
sudo apt-get update
127130
sudo apt-get install -y clang-tidy
128131
./scripts/run_clang_tidy.sh

.github/workflows/riscv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
platform:
3333
- { runner: "64cpu-linux-arm64", image: "arm64-rust-riscv-dev-32gb" }
34-
- { runner: "test-gpu-nvidia", image: "ubuntu24-gpu-x64-cuda12-9" }
34+
- { runner: "test-gpu-nvidia", image: "ubuntu24-gpu-x64" }
3535

3636
runs-on:
3737
- runs-on=${{ github.run_id }}-riscv-${{ github.run_attempt }}-${{ strategy.job-index }}/runner=${{ matrix.platform.runner }}/image=${{ matrix.platform.image }}/extras=s3-cache

0 commit comments

Comments
 (0)