Skip to content

Commit 478b21f

Browse files
committed
Revert "merge revision(s) 22e4eed, 1ab7c41, fd549b2: [Backport #20515]"
This reverts commit dc4ca25.
1 parent dc4ca25 commit 478b21f

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.github/workflows/compilers.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Some tests depending on this name 'Compilations' via $GITHUB_WORKFLOW. Make sure to update such tests when renaming this workflow.
21
name: Compilations
32

43
on:
@@ -148,7 +147,7 @@ jobs:
148147
- { name: '-O0', env: { optflags: '-O0 -march=x86-64 -mtune=generic' } }
149148
# - { name: '-O3', env: { optflags: '-O3 -march=x86-64 -mtune=generic' }, check: true }
150149

151-
- { name: gmp, env: { append_configure: '--with-gmp' }, check: true }
150+
- { name: gmp, env: { append_configure: '--with-gmp' } }
152151
- { name: jemalloc, env: { append_configure: '--with-jemalloc' } }
153152
- { name: valgrind, env: { append_configure: '--with-valgrind' } }
154153
- { name: 'coroutine=ucontext', env: { append_configure: '--with-coroutine=ucontext' } }

test/ruby/test_bignum.rb

-6
Original file line numberDiff line numberDiff line change
@@ -821,11 +821,5 @@ def test_infinite_p
821821
assert_nil(T1024P.infinite?)
822822
assert_nil((-T1024P).infinite?)
823823
end
824-
825-
def test_gmp_version
826-
if RbConfig::CONFIG.fetch('configure_args').include?("'--with-gmp'")
827-
assert_kind_of(String, Integer::GMP_VERSION)
828-
end
829-
end if ENV['GITHUB_WORKFLOW'] == 'Compilations'
830824
end
831825
end

tool/m4/ruby_check_header.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ AC_DEFUN([RUBY_CHECK_HEADER],
33
[# RUBY_CHECK_HEADER($@)
44
save_CPPFLAGS="$CPPFLAGS"
55
CPPFLAGS="$CPPFLAGS m4_if([$5], [], [$INCFLAGS], [$5])"
6-
AC_CHECK_HEADERS([$1], [$2], [$3], [$4])
6+
AC_CHECK_HEADER([$1], [$2], [$3], [$4])
77
CPPFLAGS="$save_CPPFLAGS"
88
unset save_CPPFLAGS])

version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
1212
#define RUBY_VERSION_TEENY 4
1313
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
14-
#define RUBY_PATCHLEVEL 178
14+
#define RUBY_PATCHLEVEL 177
1515

1616
#include "ruby/version.h"
1717
#include "ruby/internal/abi.h"

0 commit comments

Comments
 (0)