ruby-changes:58981
From: Kazuhiro <ko1@a...>
Date: Sat, 30 Nov 2019 16:54:55 +0900 (JST)
Subject: [ruby-changes:58981] c064018a75 (master): Make extract-gems only if test_task is check
https://git.ruby-lang.org/ruby.git/commit/?id=c064018a75 From c064018a7584fe03403a3b175ac25dbbb1162c8c Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA <zn@m...> Date: Tue, 19 Nov 2019 15:13:35 +0900 Subject: Make extract-gems only if test_task is check diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 4917e63..ab73c19 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -57,6 +57,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L57 run: make -C build $JOBS - name: Extract gems run: make -C build update-gems extract-gems + if: matrix.test_task == 'check' - 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 9fe374f..fd3fdf7 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -86,6 +86,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L86 run: make -C build $JOBS - name: Extract gems run: make -C build update-gems extract-gems + if: matrix.test_task == 'check' - name: Tests run: make -C build $JOBS -s ${{ matrix.test_task }} env: -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/