File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5
5
branches : [master]
6
6
workflow_dispatch :
7
7
branches : [master]
8
+ schedule :
9
+ - cron : " 0 2 * * *"
8
10
9
11
jobs :
10
12
build :
Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ FROM ghcr.io/r-wasm/webr:main
15
15
# Alternative workaround for libnode-dev conflicting with nodejs (see above)
16
16
RUN apt-get update && \
17
17
apt-get install -y equivs lsb-release
18
-
19
-
20
18
# equivs-control libnode-dev && \
21
19
# sed -i 's/Package:.*/Package: libnode-dev/' libnode-dev && \
22
20
# sed -i 's/# Provides:.*/Provides: libv8-dev/' libnode-dev && \
@@ -26,6 +24,9 @@ RUN apt-get update && \
26
24
# dpkg -i libnode-dev_99.0_all.deb && \
27
25
# rm -Rf libnode*
28
26
27
+ # Update outdated rust from the parent container
28
+ rustup update stable nightly
29
+
29
30
# Install some common runtime libs
30
31
RUN CRANLIBS=$(curl https://r-universe.dev/stats/sysdeps/noble | jq --slurp -r '.[].packages | flatten[]' | grep -v "libnode" ) &&\
31
32
apt-get install -y --no-install-recommends zstd xvfb $CRANLIBS && \
You can’t perform that action at this time.
0 commit comments