summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjinroq <[email protected]>2024-04-27 12:47:45 +0900
committerGitHub <[email protected]>2024-04-26 20:47:45 -0700
commitef3e3e9a2ff7684003b329f4353e3fafda38baaf (patch)
treefa7f0a49da3acfd00b4b91fbf0c1791cc44f45af
parent8089faee451c94e3becdccbe8f98a75ab9585333 (diff)
Fixed a value specified for OPT_THREADED_CODE (#10657)
Values defined for OPT_THREADED_CODE are 0,1,2. However, 1,2,3 are set in workflow. It seems that case 3 does not exist, so 0 is specified instead. Co-authored-by: jinroq <[email protected]>
-rw-r--r--.github/workflows/compilers.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index 659e4e61c9..5e5eb69b6f 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -147,9 +147,9 @@ jobs:
- { name: disable-rubygems, env: { append_configure: '--disable-rubygems' } }
- { name: RUBY_DEVEL, env: { append_configure: '--enable-devel' } }
+ - { name: OPT_THREADED_CODE=0, env: { cppflags: '-DOPT_THREADED_CODE=0' } }
- { name: OPT_THREADED_CODE=1, env: { cppflags: '-DOPT_THREADED_CODE=1' } }
- { name: OPT_THREADED_CODE=2, env: { cppflags: '-DOPT_THREADED_CODE=2' } }
- - { name: OPT_THREADED_CODE=3, env: { cppflags: '-DOPT_THREADED_CODE=3' } }
- { name: NDEBUG, env: { cppflags: '-DNDEBUG' } }
- { name: RUBY_DEBUG, env: { cppflags: '-DRUBY_DEBUG' } }