From cfb192a7b9b00c479abbbbe35d396cc5295285e5 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@ruby-lang.org> Date: Sun, 11 Aug 2019 19:33:03 +0900 Subject: [PATCH] Added test-bundled-gems to GitHub Actions --- .github/workflows/macos.yml | 4 ++-- .github/workflows/ubuntu.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5e84bdc334..c8933404a0 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,7 +11,7 @@ jobs: runs-on: macos-latest strategy: matrix: - test_task: [ "check", "test-bundler" ] + test_task: [ "check", "test-bundler", "test-bundled-gems" ] steps: - name: Disable Firewall run: | @@ -32,7 +32,7 @@ jobs: - name: configure run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline) - run: make $JOBS - - name: make check/test-bundler + - name: make check/test-bundler/test-bundled-gems run: make -s ${{ matrix.test_task }} env: TESTOPTS: "$JOBS -q --tty=no" diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 66062913b3..b5241f4dd7 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - test_task: [ "check", "test-bundler" ] + test_task: [ "check", "test-bundler", "test-bundled-gems" ] steps: - name: Install libraries run: | @@ -31,7 +31,7 @@ jobs: - name: configure run: ./configure -C --disable-install-doc - run: make $JOBS - - name: make check/test-bundler + - name: make check/test-bundler/test-bundled-gems run: make -s ${{ matrix.test_task }} env: TESTOPTS: "$JOBS -q --tty=no"