Skip to content

Commit ab1ae97

Browse files
committed
try fix
1 parent 03f8d24 commit ab1ae97

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build_artifacts.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,22 @@ jobs:
7474
artifacts=("jax" ", jaxlib" ", jax-cuda-pjrt" ", jax-cuda-plugin")
7575
else
7676
if [[ ${${{ inputs.build_jax }}:-0} == "1" ]]; then
77-
artifacts+="jax"
77+
artifacts+="'jax'"
7878
fi
7979
8080
if [[ ${${{ inputs.build_jaxlib }}:-0} == "1" ]]; then
81-
artifacts+=", jaxlib"
81+
artifacts+=", 'jaxlib'"
8282
fi
8383
8484
if [[ ${${{ inputs.build_jax_cuda_pjrt }}:-0} == "1" ]]; then
85-
artifacts+=", jax-cuda-pjrt"
85+
artifacts+=", 'jax-cuda-pjrt'"
8686
fi
8787
8888
if [[ ${${{ inputs.build_jax_cuda_plugin }}:-0} == "1" ]]; then
89-
artifacts+=", jax-cuda-plugin"
89+
artifacts+=", 'jax-cuda-plugin'"
9090
fi
9191
fi
92-
echo "artifact_matrix='[${artifacts[@]}]'" >> $GITHUB_OUTPUT
92+
echo "artifact_matrix=[${artifacts[@]}]" >> $GITHUB_OUTPUT
9393
9494
build_artifacts:
9595
needs: determine_matrix
@@ -101,7 +101,7 @@ jobs:
101101
strategy:
102102
matrix:
103103
runner: ["windows-x86-n2-64", "linux-x86-n2-16", "linux-arm64-t2a-16"]
104-
artifact: ${{ fromJSON(needs.determine_matrix.outputs.artifact_matrix) }}
104+
artifact: ${{ fromJSON(needs.determine_matrix.outputs.artifact_matrix) }}
105105
python: ["3.10"] #, "3.11", "3.12"]
106106
# jax-cuda-pjrt and jax are pure Python packages so they do not need to be built for each
107107
# Python version.

0 commit comments

Comments
 (0)