We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbd9f4 commit eaab2b7Copy full SHA for eaab2b7
ci/run-docker.sh
@@ -43,7 +43,7 @@ run() {
43
44
if [ "${GITHUB_ACTIONS:-}" = "true" ]; then
45
# Enable Docker image caching on GHA
46
-
+
47
build_cmd=("buildx" "build")
48
build_args=(
49
"--cache-from" "type=local,src=/tmp/.buildx-cache"
@@ -53,9 +53,9 @@ run() {
53
)
54
fi
55
56
- docker ${build_cmd[@]:-build} \
+ docker "${build_cmd[@]:-build}" \
57
-t "builtins-$target" \
58
- ${build_args[@]:-} \
+ "${build_args[@]:-}" \
59
"ci/docker/$target"
60
docker run \
61
--rm \
@@ -64,7 +64,7 @@ run() {
64
-e "CARGO_TARGET_DIR=/builtins-target" \
65
-v "$(pwd):/checkout:ro" \
66
-w /checkout \
67
- ${run_args[@]:-} \
+ "${run_args[@]:-}" \
68
--init \
69
"builtins-$target" \
70
sh -c "$run_cmd"
0 commit comments