File tree Expand file tree Collapse file tree 4 files changed +19
-12
lines changed
Expand file tree Collapse file tree 4 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,16 @@ inputs:
66runs :
77 using : composite
88 steps :
9+ - name : Display gcc version
10+ id : gcc-version
11+ shell : bash
12+ run : |
13+ gcc -v
914 - name : Display Ruby version
1015 id : ruby-version
1116 shell : bash
1217 run : |
13- ruby -v || :
18+ ruby -v
1419 - name : Install Ruby gem dependencies
1520 id : bundle-install
1621 shell : bash
Original file line number Diff line number Diff line change 44 push :
55 pull_request :
66 schedule :
7- - cron : " 0 0 1 * *" # first day of every month
7+ - cron : " 0 0 * * 0 " # run weekly on Sundays
88
99permissions : read-all
1010
@@ -45,13 +45,15 @@ jobs:
4545 runs-on : ubuntu-latest
4646 container : ruby:latest
4747 strategy :
48+ fail-fast : false
4849 matrix :
4950 bash-version :
50- - ' 5.2'
51- - ' 5.1'
52- - ' 5.0'
53- - ' 4.4'
54- - ' 4.3'
51+ # - "5.3"
52+ - " 5.2"
53+ - " 5.1"
54+ # - "5.0"
55+ # - "4.4"
56+ # - "4.3"
5557 steps :
5658 - uses : actions/checkout@v4
5759 - uses : ./.github/actions/set-up-bashcov
Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ name: Update Nix dependencies
22
33on :
44 schedule :
5- # Sunday and Wednesday
6- - cron : ' 42 4 * * 0,3'
5+ - cron : " 0 0 * * 3" # run weekly on Wednesdays
76 workflow_dispatch :
87
98jobs :
2625 uses : peter-evans/create-pull-request@v5
2726 with :
2827 branch : create-pull-request/update-nix-deps
29- title : ' [create-pull-request] Update Nix dependencies'
28+ title : " [create-pull-request] Update Nix dependencies"
3029 body : |
3130 Update Nix dependencies in `Gemfile.nix.lock` and `gemset.nix`.
3231
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ echo "Installing bash $INSTALL_BASH_VERSION..."
1313
1414mkdir -p bash
1515cd bash
16- wget -N https://ftpmirror.gnu.org/bash/bash-$INSTALL_BASH_VERSION .tar.gz
17- tar xvf bash-$INSTALL_BASH_VERSION .tar.gz
16+ wget -qN https://ftpmirror.gnu.org/bash/bash-$INSTALL_BASH_VERSION .tar.gz
17+ tar xf bash-$INSTALL_BASH_VERSION .tar.gz
1818pushd bash-$INSTALL_BASH_VERSION
1919
2020patches=" ../bash-$INSTALL_BASH_VERSION -patches/bash$( echo $INSTALL_BASH_VERSION | tr -d .) -???"
@@ -23,6 +23,7 @@ for patch in $(find .. -wholename "$patches" | sort); do
2323 patch -f -p0 < $patch
2424done
2525
26+ gcc -v
2627./configure --exec-prefix /
2728make
2829make install
You can’t perform that action at this time.
0 commit comments