Skip to content

Commit 83513f8

Browse files
committed
Attempt to install ROCm packages
1 parent 944a399 commit 83513f8

File tree

2 files changed

+35
-32
lines changed

2 files changed

+35
-32
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,26 @@ 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+
- name: Install ROCm Packages
24+
shell: bash
25+
run: |
26+
sudo apt update
27+
wget https://repo.radeon.com/amdgpu-install/6.2.2/ubuntu/noble/amdgpu-install_6.2.60202-1_all.deb
28+
sudo apt install ./amdgpu-install_6.2.60202-1_all.deb
29+
sudo amdgpu-install --usecase=hiplibsdk
30+
ls -all /opt
31+
ls -all /opt/rocm/include
32+
ls -all /opt/rocm/include/hip
33+
ls -all /opt/rocm/lib
34+
# --------------------------------------------------------------------------------
2335
- name: Audit
2436
run: cargo xtask check audit
2537
# --------------------------------------------------------------------------------

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)