Added test-bundled-gems to GitHub Actions

This commit is contained in:
Hiroshi SHIBATA 2019-08-11 19:33:03 +09:00
Родитель 11a09d78c1
Коммит cfb192a7b9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
2 изменённых файлов: 4 добавлений и 4 удалений

4
.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"

4
.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"