aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-13 21:28:53 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-11-30 16:44:52 +0900
commitbb3542cc6b3db5477c2a9efd76905a4133545da1 (patch)
tree3c40fe9b63ad78225e0692d1076a62a7bce9d1a4 /.github
parent2eb4afb10bd9a3849eb34292f33240ac3ef19905 (diff)
downloadruby-bb3542cc6b3db5477c2a9efd76905a4133545da1.tar.gz
Add update-gems before extract-gems
(windows.yml used `nmake up`)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 2b4612d268..4917e6333b 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -56,7 +56,7 @@ jobs:
- name: Make
run: make -C build $JOBS
- name: Extract gems
- run: make -C build extract-gems
+ run: make -C build update-gems extract-gems
- name: Tests
run: make -C build $JOBS -s ${{ matrix.test_task }}
env:
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index ba5ab9afdd..9fe374f628 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -85,7 +85,7 @@ jobs:
- name: Make
run: make -C build $JOBS
- name: Extract gems
- run: make -C build extract-gems
+ run: make -C build update-gems extract-gems
- name: Tests
run: make -C build $JOBS -s ${{ matrix.test_task }}
env: