Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/therock-ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
repository: "ROCm/TheRock"
path: TheRock
ref: d24cccc1820fa5469b88c0f14e36a14349d38cac # 2025-11-12 commit
ref: "e238c0269a9e54b275ef34ffb43c6c52a0cddc83" # 2025-11-26 commit on release/therock-7.10 branch

- name: Install python deps
run: |
Expand Down Expand Up @@ -90,6 +90,10 @@ jobs:
# rm ./TheRock/patches/amd-mainline/rocm-libraries/*.patch
git -c user.name="therockbot" -c "user.email=therockbot@amd.com" am --whitespace=nowarn ./TheRock/patches/amd-mainline/rocm-libraries/*.patch

- name: Install external python deps
run: |
pip install -r TheRock/requirements-external.txt

- name: Configure Projects
env:
amdgpu_families: ${{ env.AMDGPU_FAMILIES }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/therock-ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
repository: "ROCm/TheRock"
path: "TheRock"
ref: d24cccc1820fa5469b88c0f14e36a14349d38cac # 2025-11-12 commit
ref: "e238c0269a9e54b275ef34ffb43c6c52a0cddc83" # 2025-11-26 commit on release/therock-7.10 branch

- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
Expand Down Expand Up @@ -105,6 +105,10 @@ jobs:
git config --global core.longpaths true
python ./TheRock/build_tools/fetch_sources.py --jobs 12 --no-include-rocm-libraries --no-include-ml-frameworks

- name: Install external python deps
run: |
pip install -r TheRock/requirements-external.txt

- name: Configure Projects
env:
amdgpu_families: ${{ env.AMDGPU_FAMILIES }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/therock-test-component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
repository: "ROCm/TheRock"
ref: d24cccc1820fa5469b88c0f14e36a14349d38cac # 2025-11-12 commit
ref: e238c0269a9e54b275ef34ffb43c6c52a0cddc83 # 2025-11-26 commit on release/therock-7.10 branch

- name: Run setup test environment workflow
uses: './.github/actions/setup_test_environment'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/therock-test-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
sparse-checkout: build_tools
path: "prejob"
repository: "ROCm/TheRock"
ref: d24cccc1820fa5469b88c0f14e36a14349d38cac # 2025-11-12 commit
ref: e238c0269a9e54b275ef34ffb43c6c52a0cddc83 # 2025-11-26 commit on release/therock-7.10 branch

# Checkout failure is possible on Windows, as it's the first job on a GPU test runner.
# Post-job cleanup isn't necessary since no executables are launched in this job.
Expand All @@ -44,7 +44,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
repository: "ROCm/TheRock"
ref: d24cccc1820fa5469b88c0f14e36a14349d38cac # 2025-11-12 commit
ref: e238c0269a9e54b275ef34ffb43c6c52a0cddc83 # 2025-11-26 commit on release/therock-7.10 branch

- name: Setting up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
Expand Down
Loading