We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f38b96 commit 1a27a6bCopy full SHA for 1a27a6b
2 files changed
provisioning/build.Dockerfile
@@ -73,6 +73,7 @@ COPY . .
73
RUN if [ -f ${BUILD_VAR_SCRIPT} ]; then \
74
chmod +x ${BUILD_VAR_SCRIPT} && \
75
. ${BUILD_VAR_SCRIPT} && \
76
+ rustup target add ${TARGET} && \
77
echo "Cross-compilation environment set up for ${TARGET}"; \
78
else \
79
echo "No cross-compilation needed"; \
rust-toolchain.toml
@@ -1,2 +1,3 @@
1
[toolchain]
2
-channel = "1.91.0"
+channel = "1.91"
3
+targets = ["aarch64-unknown-linux-gnu", "x86_64-unknown-linux-gnu"]
0 commit comments