mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
Fix daily failures due to macos-latest change. (#9637)
* Fix test modules linking on macOS 11.x. * Use macOS 10.x for FreeBSD VM as VirtualBox is not yet supported on 11.
This commit is contained in:
parent
3c9e5271c6
commit
6d5a911707
2
.github/workflows/daily.yml
vendored
2
.github/workflows/daily.yml
vendored
@ -399,7 +399,7 @@ jobs:
|
||||
run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}}
|
||||
|
||||
test-freebsd:
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-10.15
|
||||
if: github.repository == 'redis/redis' && !contains(github.event.inputs.skipjobs, 'freebsd')
|
||||
timeout-minutes: 14400
|
||||
steps:
|
||||
|
@ -11,8 +11,9 @@ else # Linux, others
|
||||
endif
|
||||
|
||||
# Needed to satisfy __stack_chk_fail_local on Linux with -m32, due to gcc
|
||||
# -fstack-protector by default. Breaks on FreeBSD so we exclude it.
|
||||
ifneq ($(uname_S),FreeBSD)
|
||||
# -fstack-protector by default. Breaks on FreeBSD and macOS 11 so needs
|
||||
# to be Linux specific.
|
||||
ifeq ($(uname_S),Linux)
|
||||
LIBS = -lc
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user