summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-12-06 09:13:53 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-12-06 10:31:16 +0900
commitbc214d10b8854fec728b3b2fe472e58688661cba (patch)
tree6ff2ad4d6a7a04d94d1aafda1351a2b82e551217
parentb021f6f8a74bee71aa5ce153e7c2095f0f41ed3d (diff)
Added jemalloc build to GitHub Actions
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12273
-rw-r--r--.github/actions/setup/macos/action.yml2
-rw-r--r--.github/workflows/macos.yml3
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/setup/macos/action.yml b/.github/actions/setup/macos/action.yml
index fd7b5e7145..5da7c6d44c 100644
--- a/.github/actions/setup/macos/action.yml
+++ b/.github/actions/setup/macos/action.yml
@@ -13,7 +13,7 @@ runs:
- name: brew
shell: bash
run: |
- brew install --quiet gmp libffi openssl@3 zlib autoconf automake libtool
+ brew install --quiet jemalloc gmp libffi openssl@3 zlib autoconf automake libtool
- name: Set ENV
shell: bash
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index e0ed0d9a07..3c8d639607 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -30,6 +30,9 @@ jobs:
- test_task: check
os: macos-14
configure_args: '--with-gcc=gcc-14'
+ - test_task: check
+ os: macos-14
+ configure_args: '--with-jemalloc'
- test_task: test-all
test_opts: --repeat-count=2
os: macos-14