From bb3542cc6b3db5477c2a9efd76905a4133545da1 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Wed, 13 Nov 2019 21:28:53 +0900 Subject: [PATCH] Add update-gems before extract-gems (windows.yml used `nmake up`) --- .github/workflows/macos.yml | 2 +- .github/workflows/ubuntu.yml | 2 +- 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: