Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 22 additions & 9 deletions .github/workflows/kvrocks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,24 +109,37 @@ jobs:
fail-fast: false
matrix:
include:
- name: Darwin Clang
os: macos-13
compiler: auto
- name: Darwin Clang arm64
os: macos-14
compiler: auto
- name: Darwin Clang without Jemalloc
os: macos-13
- name: Darwin Clang arm64 without Jemalloc
os: macos-14
compiler: auto
without_jemalloc: -DDISABLE_JEMALLOC=ON
- name: Darwin Clang with OpenSSL
os: macos-13
- name: Darwin Clang arm64 with OpenSSL
os: macos-14
compiler: auto
with_openssl: -DENABLE_OPENSSL=ON
- name: Darwin Clang without luaJIT
os: macos-13
- name: Darwin Clang arm64 without luaJIT
os: macos-14
compiler: auto
without_luajit: -DENABLE_LUAJIT=OFF
# FIXME: temporarily disable macos-13 build, refer to #2874
# - name: Darwin Clang
# os: macos-13
# compiler: auto
# - name: Darwin Clang without Jemalloc
# os: macos-13
# compiler: auto
# without_jemalloc: -DDISABLE_JEMALLOC=ON
# - name: Darwin Clang with OpenSSL
# os: macos-13
# compiler: auto
# with_openssl: -DENABLE_OPENSSL=ON
# - name: Darwin Clang without luaJIT
# os: macos-13
# compiler: auto
# without_luajit: -DENABLE_LUAJIT=OFF
- name: Ubuntu GCC
os: ubuntu-22.04
compiler: gcc
Expand Down
Loading