Skip to content

Commit d30ec2b

Browse files
Ruturaj4Github Actions
authored andcommitted
[ROCm] fix jax and wheelhouse relative paths
1 parent 355589f commit d30ec2b

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)