File tree Expand file tree Collapse file tree 2 files changed +41
-33
lines changed Expand file tree Collapse file tree 2 files changed +41
-33
lines changed Original file line number Diff line number Diff line change 1212
1313jobs :
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 # --------------------------------------------------------------------------------
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
4563 # --------------------------------------------------------------------------------
4664 - name : Documentation Tests
4765 run : cargo xtask doc tests
48-
You can’t perform that action at this time.
0 commit comments