Compare commits
3 commits
49036a0682
...
d19e9453c8
Author | SHA1 | Date | |
---|---|---|---|
d19e9453c8 | |||
efebe692ca | |||
fa62177d62 |
4 changed files with 4 additions and 1 deletions
1
Justfile
1
Justfile
|
@ -31,6 +31,7 @@ build context dockerfile='' image_target='' *args='':
|
||||||
-v target={{image_target}} \
|
-v target={{image_target}} \
|
||||||
-v registry_url={{registry_url}} \
|
-v registry_url={{registry_url}} \
|
||||||
-v 'buildkit_config={{buildkit_config}}' \
|
-v 'buildkit_config={{buildkit_config}}' \
|
||||||
|
-v image_platform= \
|
||||||
{{args}}
|
{{args}}
|
||||||
@echo "$(tput bold)Image built and downloaded to /tmp/build-image/. You can import it with 'docker image import /tmp/build-image/image.tar <tag>'$(tput sgr0)"
|
@echo "$(tput bold)Image built and downloaded to /tmp/build-image/. You can import it with 'docker image import /tmp/build-image/image.tar <tag>'$(tput sgr0)"
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,6 @@ RUN set -eux; \
|
||||||
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 100; \
|
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 100; \
|
||||||
update-alternatives --install /usr/bin/ld ld /usr/bin/ld.lld 100; \
|
update-alternatives --install /usr/bin/ld ld /usr/bin/ld.lld 100; \
|
||||||
rustup target add x86_64-pc-windows-msvc; \
|
rustup target add x86_64-pc-windows-msvc; \
|
||||||
rustup default stable-x86_64-pc-windows-msvc; \
|
|
||||||
rustup component add rust-src; \
|
rustup component add rust-src; \
|
||||||
rustup update; \
|
rustup update; \
|
||||||
apt-get remove -y --auto-remove \
|
apt-get remove -y --auto-remove \
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
dockerfile: ''
|
dockerfile: ''
|
||||||
registry_url: "((registry_url))"
|
registry_url: "((registry_url))"
|
||||||
buildkit_config: "((buildkit_config))"
|
buildkit_config: "((buildkit_config))"
|
||||||
|
image_platform: ''
|
||||||
params:
|
params:
|
||||||
BUILD_ARG_VARIANT: {{ variant }}
|
BUILD_ARG_VARIANT: {{ variant }}
|
||||||
output_mapping:
|
output_mapping:
|
||||||
|
|
|
@ -64,6 +64,7 @@
|
||||||
dockerfile: ''
|
dockerfile: ''
|
||||||
registry_url: "((registry_url))"
|
registry_url: "((registry_url))"
|
||||||
buildkit_config: "((buildkit_config))"
|
buildkit_config: "((buildkit_config))"
|
||||||
|
image_platform: ''
|
||||||
output_mapping:
|
output_mapping:
|
||||||
image: image-rust-xwin
|
image: image-rust-xwin
|
||||||
- task: build-rust-xwin-ci
|
- task: build-rust-xwin-ci
|
||||||
|
@ -75,6 +76,7 @@
|
||||||
dockerfile: ''
|
dockerfile: ''
|
||||||
registry_url: "((registry_url))"
|
registry_url: "((registry_url))"
|
||||||
buildkit_config: "((buildkit_config))"
|
buildkit_config: "((buildkit_config))"
|
||||||
|
image_platform: ''
|
||||||
output_mapping:
|
output_mapping:
|
||||||
image: image-rust-xwin-ci
|
image: image-rust-xwin-ci
|
||||||
- in_parallel:
|
- in_parallel:
|
||||||
|
|
Loading…
Add table
Reference in a new issue