Skip to content
Snippets Groups Projects
Commit d59b1b41 authored by Louis's avatar Louis :fire:
Browse files

Merge branch 'louis-trunk-patch-38424' into 'trunk'

Include mold linker for x86 image

See merge request microhacks/bevy-builder!3
parents d01c2091 33e2a4f7
Branches trunk
No related tags found
No related merge requests found
Pipeline #523 canceled with stage
in 2 minutes and 18 seconds
......@@ -47,4 +47,12 @@ RUN wget https://lab.lcr.gr/microhacks/flit/-/jobs/artifacts/trunk/raw/target/re
chmod +x flit && \
mv flit /usr/local/bin/flit
RUN wget https://github.com/rui314/mold/releases/download/v1.7.1/mold-1.7.1-x86_64-linux.tar.gz && \
tar -xvzf mold-1.7.1-x86_64-linux.tar.gz && \
mv mold-1.7.1-x86_64-linux/bin/* /usr/bin/ && \
mv mold-1.7.1-x86_64-linux/lib/* /usr/lib/ && \
mv mold-1.7.1-x86_64-linux/libexec/* /usr/libexec/ && \
rm -r mold-1.7.1-x86_64-linux && \
rm mold-1.7.1-x86_64-linux.tar.gz
COPY --from=trunkbuild /usr/local/cargo/bin/trunk /usr/local/cargo/bin/trunk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment