Skip to content
Merged
Show file tree
Hide file tree
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
25 changes: 13 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ commands:
command: |
git submodule update --init opt/readies
./opt/readies/bin/getpy3
./opt/readies/bin/getgcc

setup-build-system:
steps:
Expand Down Expand Up @@ -221,7 +222,7 @@ commands:
jobs:
lint:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand All @@ -234,14 +235,14 @@ jobs:

build-and-test:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- build-steps:
platform: debian

platforms-build-cpu:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
parameters:
lite: # LITE value during make
type: string
Expand Down Expand Up @@ -312,7 +313,7 @@ jobs:

coverage:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand Down Expand Up @@ -346,7 +347,7 @@ jobs:
type: string
default: "CLUSTER=0"
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand Down Expand Up @@ -375,14 +376,14 @@ jobs:

valgrind-general-for-forked-prs:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- only_run_if_forked_pull_request
- valgrind-general-steps

valgrind-general:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- valgrind-general-steps

Expand Down Expand Up @@ -416,7 +417,7 @@ jobs:
location:
type: string
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand All @@ -434,7 +435,7 @@ jobs:

deploy-snapshot:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand All @@ -451,7 +452,7 @@ jobs:

deploy-release:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand All @@ -469,7 +470,7 @@ jobs:

release-automation:
docker:
- image: redisfab/rmbuilder:6.2.5-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- checkout
- setup-automation
Expand All @@ -483,7 +484,7 @@ jobs:

#nightly-automation:
# docker:
# - image: redisfab/rmbuilder:6.2.5-x64-buster
# - image: redisfab/rmbuilder:6.2.5-x64-bullseye
# steps:
# - checkout
# - setup-automation
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENDIF()

#----------------------------------------------------------------------------------------------

SET(CMAKE_CC_COMMON_FLAGS "-fPIC")
SET(CMAKE_CC_COMMON_FLAGS "-fPIC -fcommon")
IF (USE_PROFILE)
SET(CMAKE_CC_COMMON_FLAGS "${CMAKE_CC_COMMON_FLAGS} -g -ggdb -fno-omit-frame-pointer")
ENDIF()
Expand Down
2 changes: 1 addition & 1 deletion opt/readies
Submodule readies updated 1 files
+4 −1 paella/setup.py
10 changes: 10 additions & 0 deletions opt/redis_valgrind.sup
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,13 @@
fun:epoll_ctl
...
}


{
<_dl_catch_exception>
Memcheck:Addr8
fun:strncmp
...
fun:_dl_catch_exception
...
}
2 changes: 1 addition & 1 deletion opt/system-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def common_first(self):

def debian_compat(self):
self.run("%s/bin/enable-utf8" % READIES)
self.run("%s/bin/getgcc" % READIES)
self.run("%s/bin/getgcc --modern" % READIES)
self.install("gawk")
self.install("libssl-dev")
self.install("python3-regex")
Expand Down