Skip to content

Commit ab79066

Browse files
Merge pull request jax-ml#25128 from ROCm:ci_fix_wheelhouse_relative_paths-upstream
PiperOrigin-RevId: 701143534
2 parents b0df405 + d30ec2b commit ab79066

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/rocm/ci_build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ def dist_wheels(
8989

9090
mounts = [
9191
"-v",
92-
"./:/jax",
92+
os.path.abspath("./") + ":/jax",
9393
"-v",
94-
"./wheelhouse:/wheelhouse",
94+
os.path.abspath("./wheelhouse") + ":/wheelhouse",
9595
]
9696

9797
if xla_path:
@@ -210,7 +210,7 @@ def test(image_name):
210210
# JAX and jaxlib are already installed from wheels
211211
mounts = [
212212
"-v",
213-
"./:/jax",
213+
os.path.abspath("./") + ":/jax",
214214
]
215215

216216
cmd.extend(mounts)

0 commit comments

Comments
 (0)