mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parent
5917fe2303
commit
68e987c315
Notes:
git
2020-05-26 23:04:39 +09:00
Merged-By: ko1 <ko1@atdot.net>
1 changed files with 10 additions and 1 deletions
11
.github/workflows/ubuntu.yml
vendored
11
.github/workflows/ubuntu.yml
vendored
|
@ -6,6 +6,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
test_task: [ "check", "test-bundler", "test-bundled-gems", "test-all TESTS=--repeat-count=2", "leaked-globals" ]
|
test_task: [ "check", "test-bundler", "test-bundled-gems", "test-all TESTS=--repeat-count=2", "leaked-globals" ]
|
||||||
os: [ubuntu-latest, ubuntu-16.04]
|
os: [ubuntu-latest, ubuntu-16.04]
|
||||||
|
debug: ["", "-DRUBY_DEBUG"]
|
||||||
exclude:
|
exclude:
|
||||||
- test_task: test-bundler
|
- test_task: test-bundler
|
||||||
os: ubuntu-16.04
|
os: ubuntu-16.04
|
||||||
|
@ -15,6 +16,14 @@ jobs:
|
||||||
os: ubuntu-16.04
|
os: ubuntu-16.04
|
||||||
- test_task: leaked-globals
|
- test_task: leaked-globals
|
||||||
os: ubuntu-16.04
|
os: ubuntu-16.04
|
||||||
|
- os: ubuntu-16.04
|
||||||
|
debug: -DRUBY_DEBUG
|
||||||
|
- test_task: "test-all TESTS=--repeat-count=2"
|
||||||
|
debug: -DRUBY_DEBUG
|
||||||
|
- test_task: "test-all TESTS=--repeat-count=2"
|
||||||
|
debug: -DRUBY_DEBUG
|
||||||
|
- test_task: leaked-globals
|
||||||
|
debug: -DRUBY_DEBUG
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||||
|
@ -42,7 +51,7 @@ jobs:
|
||||||
working-directory: src
|
working-directory: src
|
||||||
- run: mkdir build
|
- run: mkdir build
|
||||||
- name: Run configure
|
- name: Run configure
|
||||||
run: ../src/configure -C --disable-install-doc
|
run: ../src/configure -C --disable-install-doc cppflags=${{ matrix.debug }}
|
||||||
working-directory: build
|
working-directory: build
|
||||||
- run: make $JOBS
|
- run: make $JOBS
|
||||||
working-directory: build
|
working-directory: build
|
||||||
|
|
Loading…
Reference in a new issue