Skip to content

Commit 579f94e

Browse files
committed
Hopefully fix c2rust build
1 parent 70018d1 commit 579f94e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Dockerfile.c2rust

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ RUN apt update -y -q && apt upgrade -y -q && apt update -y -q && \
2020

2121
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none
2222

23+
# Install uv (required for c2rust-refactor build scripts)
24+
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
25+
2326
RUN mkdir -p /opt/compiler-explorer
2427

2528
# Add github public key to known_hosts, to enable interaction-less clone

c2rust/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
set -exu
44
source common.sh
55
source $HOME/.cargo/env
6+
export PATH="$HOME/.local/bin:$PATH"
67

78
## $1 : version, like v0.9 (tag) or master (branch)
89
## $2 : destination: a directory or S3 path (eg. s3://...)

0 commit comments

Comments
 (0)