Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .github/workflows/hw-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,15 @@ jobs:
with:
name: hw-gate-prelim
path: prelim
- name: Login-shell toolchain (the runner service PATH has neither cargo nor ROCm)
# Both runners are systemd services: PATH is the distro default, so
# `cargo` and `hipcc` are not found (run 33849478193 failed both lanes in
# 40 s with "[Errno 2] No such file or directory: 'cargo'"). The runner
# user's login shell has the toolchain; import it for the steps below.
run: |
set -euo pipefail
bash -lc 'echo "$PATH"' | tr ':' '\n' >> "$GITHUB_PATH"
bash -lc 'env' | grep -E '^(ROCM_PATH|HIP_PATH|HSA_PATH|HIP_PLATFORM|LD_LIBRARY_PATH)=' >> "$GITHUB_ENV" || true
- name: "Run routes (shared GPU lock: coexists with other lanes, excludes a Fable session)"
run: |
set -euo pipefail
Expand Down Expand Up @@ -352,6 +361,11 @@ jobs:
ref: ${{ needs.select.outputs.head_sha }}
path: pr
fetch-depth: 0
- name: Login-shell toolchain (the runner service PATH has neither cargo nor ROCm)
run: |
set -euo pipefail
bash -lc 'echo "$PATH"' | tr ':' '\n' >> "$GITHUB_PATH"
bash -lc 'env' | grep -E '^(ROCM_PATH|HIP_PATH|HSA_PATH|HIP_PLATFORM|LD_LIBRARY_PATH)=' >> "$GITHUB_ENV" || true
- name: Build PR head and base branch
run: |
set -euo pipefail
Expand Down
Loading