[前][次][番号順一覧][スレッド一覧]

ruby-changes:69222

From: Alan <ko1@a...>
Date: Thu, 21 Oct 2021 08:24:07 +0900 (JST)
Subject: [ruby-changes:69222] b242ea87da (master): Re-enable leaked global check

https://git.ruby-lang.org/ruby.git/commit/?id=b242ea87da

From b242ea87da6fabba04bc515b7bce26dc1ce0199e Mon Sep 17 00:00:00 2001
From: Alan Wu <XrXr@u...>
Date: Fri, 1 Oct 2021 19:10:35 -0400
Subject: Re-enable leaked global check

YJIT should be able to pass this check now.
---
 .github/workflows/macos.yml  | 2 +-
 .github/workflows/ubuntu.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 7c3f19f55b..64793fcb1d 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -35,7 +35,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L35
       - run: make $JOBS incs
       - run: make $JOBS
       - run: make leaked-globals
-        if: ${{ matrix.test_task == 'check' }}
+        if: matrix.test_task == 'check'
       - run: make prepare-gems
         if: ${{ matrix.test_task == 'check' }}
       - run: make $JOBS -s ${{ matrix.test_task }}
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index e148b76cbe..f887e19df6 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -48,7 +48,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L48
       - run: make $JOBS incs
       - run: make $JOBS
       - run: make leaked-globals
-        if: ${{ matrix.test_task == 'check' }}
+        if: matrix.test_task == 'check'
       - run: make prepare-gems
         if: ${{ matrix.test_task == 'check' }}
       - name: Create dummy files in build dir
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]