Skip to content

Commit cad2074

Browse files
committed
Run CI tests on amd-rx7600 runner
1 parent 944a399 commit cad2074

File tree

2 files changed

+41
-33
lines changed

2 files changed

+41
-33
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,23 @@ on:
1212

1313
jobs:
1414
checks:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Setup Rust
1818
uses: tracel-ai/github-actions/setup-rust@v1
1919
with:
2020
rust-toolchain: stable
2121
cache-key: stable-linux
2222
# --------------------------------------------------------------------------------
23+
# Can take a while to execute
24+
- name: Install ROCm Packages
25+
shell: bash
26+
run: |
27+
sudo apt update
28+
wget https://repo.radeon.com/amdgpu-install/6.2.2/ubuntu/noble/amdgpu-install_6.2.60202-1_all.deb
29+
sudo apt install ./amdgpu-install_6.2.60202-1_all.deb
30+
sudo amdgpu-install --usecase=hiplibsdk
31+
# --------------------------------------------------------------------------------
2332
- name: Audit
2433
run: cargo xtask check audit
2534
# --------------------------------------------------------------------------------
@@ -36,6 +45,15 @@ jobs:
3645
# --------------------------------------------------------------------------------
3746
- name: Typos
3847
uses: tracel-ai/github-actions/check-typos@v1
48+
49+
tests:
50+
runs-on: amd-rx7600
51+
steps:
52+
- name: Setup Rust
53+
uses: tracel-ai/github-actions/setup-rust@v1
54+
with:
55+
rust-toolchain: stable
56+
cache-key: stable-linux
3957
# --------------------------------------------------------------------------------
4058
- name: Unit Tests
4159
run: cargo xtask test unit
@@ -45,4 +63,3 @@ jobs:
4563
# --------------------------------------------------------------------------------
4664
- name: Documentation Tests
4765
run: cargo xtask doc tests
48-

Cargo.lock

Lines changed: 22 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)