aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-05 21:26:59 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-05 21:27:05 -0800
commit760fe0a78a4129bdc6ba66fb3ac0c63b160ab9f0 (patch)
treea6c19567506d1a4eb017c2a4627d86480c4f7bc8 /.github/workflows
parent5d35b4b0e1e511981db062f7c8f803931d06e1cb (diff)
downloadruby-760fe0a78a4129bdc6ba66fb3ac0c63b160ab9f0.tar.gz
Disable test-spec as well for annocheck
https://github.com/ruby/ruby/actions/runs/4340193212/jobs/7578505652
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/annocheck.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/annocheck.yml b/.github/workflows/annocheck.yml
index c0e1e010ff..8f3195fd85 100644
--- a/.github/workflows/annocheck.yml
+++ b/.github/workflows/annocheck.yml
@@ -124,12 +124,14 @@ jobs:
if: ${{ matrix.entry.check }}
- run: make test-tool
if: ${{ matrix.entry.check }}
+ ### test-all doesn't work: https://github.com/ruby/ruby/actions/runs/4340112185/jobs/7578344307
# - run: make test-all TESTS='-- ruby -ext-'
# if: ${{ matrix.entry.check }}
- - run: make test-spec
- env:
- CHECK_LEAKS: true
- if: ${{ matrix.entry.check }}
+ ### test-spec doesn't work: https://github.com/ruby/ruby/actions/runs/4340193212/jobs/7578505652
+ # - run: make test-spec
+ # env:
+ # CHECK_LEAKS: true
+ # if: ${{ matrix.entry.check }}
- run: make test-annocheck
if: ${{ matrix.entry.check && endsWith(matrix.entry.name, 'annocheck') }}