Skip to content

Commit 32f307f

Browse files
committed
Do not update nightly
See #4
1 parent e883cb0 commit 32f307f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ COPY Renviron /opt/R/current/lib/R/etc/Renviron.site
4141
COPY Rprofile /opt/R/current/lib/R/etc/Rprofile.site
4242

4343
# Update emscripten rust from the parent container
44+
RUN rustup update stable
45+
4446
# Workaround for https://github.com/rust-lang/rustup/issues/2417
45-
RUN rustup update stable &&\
46-
rustup toolchain uninstall nightly && rustup toolchain install nightly
47+
## RUN rustup toolchain uninstall nightly && rustup toolchain install nightly
4748

4849
# Use devel-pak (until solver hangs are fixed)
4950
RUN R -e 'install.packages("pak", lib = .Library, repos = "https://r-lib.github.io/p/pak/devel/source/linux-gnu/x86_64")'

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ GITHUB_OUTPUT=${GITHUB_OUTPUT:-/dev/stdout}
1313
# Make sure we have laste rust
1414
if [ "$NEED_CARGO" ]; then
1515
echo "::group::Update Rust"
16-
rustup update stable nightly || true
16+
rustup update stable || true
1717
echo "::endgroup::"
1818
fi
1919

0 commit comments

Comments
 (0)