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 @@ -4,6 +4,8 @@ concurrency:
4
4
cancel-in-progress : true
5
5
on :
6
6
workflow_dispatch :
7
+ schedule :
8
+ - cron : " 0 5 * * 3" # At 05:00 on Wednesday # https://crontab.guru/#0_5_*_*_3
7
9
push :
8
10
branches :
9
11
- main
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN rm -f /usr/local/bin/sudo && \
19
19
<% else %>
20
20
ENV DEBIAN_FRONTEND noninteractive
21
21
RUN apt-get -y update && \
22
- apt-get install -y curl git-core xz-utils build-essential zlib1g-dev libreadline-dev libssl-dev wget unzip sudo gnupg2 dirmngr cmake pkg-config && \
22
+ apt-get install -y curl git-core xz-utils build-essential zlib1g-dev libreadline-dev libssl-dev wget unzip sudo gnupg2 dirmngr cmake pkg-config autoconf && \
23
23
rm -rf /var/lib/apt/lists/*
24
24
<% end %>
25
25
@@ -61,9 +61,10 @@ RUN bash -c " \
61
61
62
62
# Install rake-compiler and typical gems in all Rubies
63
63
# do not generate documentation for gems
64
+ # TODO: stop pinning rubygems to 3.3.20 once https://github.com/rake-compiler/rake-compiler/pull/209 is merged
64
65
RUN echo "gem: --no-ri --no-rdoc" > > ~/.gemrc && \
65
66
bash -c " \
66
- rvm all do gem update --system --no-document && \
67
+ rvm all do gem update --system=3.3.20 --no-document && \
67
68
rvm all do gem install --no-document bundler 'bundler:~> 1.16' 'rake-compiler:1.1.6' hoe mini_portile rubygems-tasks mini_portile2 && \
68
69
find /usr/local/rvm -type d -print0 | sudo xargs -0 chmod g+sw "
69
70
You can’t perform that action at this time.
0 commit comments