Skip to content

use latest datasketches-cpp-5.2.0 #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 17, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: checkout datasketches-cpp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: apache/datasketches-cpp
path: datasketches-cpp
Expand All @@ -24,7 +24,7 @@ jobs:
- name: install PostgreSQL
run: |
sudo apt update
sudo apt -y install postgresql-14 postgresql-client-14 postgresql-server-dev-14 libpq-dev
sudo apt -y install postgresql-16 postgresql-client-16 postgresql-server-dev-16 libpq-dev
- name: make
run: make
- name: install
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
ARG BASE_IMAGE_VERSION=latest

ARG DATASKETCHES_CPP_HASH=8135b65408947694e13bd131038889e439847aa2
ARG DATASKETCHES_CPP_VERSION=5.0.0
ARG DATASKETCHES_CPP_VERSION=5.2.0

FROM postgres:$BASE_IMAGE_VERSION

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CORE = datasketches-cpp
BOOST = boost
BOOST_VER = 1.75.0
BOOST_FILE = boost_$(subst .,_,$(BOOST_VER))
BOOST_URL = https://boostorg.jfrog.io/artifactory/main/release/$(BOOST_VER)/source/$(BOOST_FILE).zip
BOOST_URL = https://archives.boost.io/release/$(BOOST_VER)/source/$(BOOST_FILE).zip

PG_CPPFLAGS = -fPIC -I/usr/local/include -I$(BOOST) -I$(CORE)/common/include \
-I$(CORE)/kll/include \
Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ -z $2 ]; then
fi

# version of datasketches-cpp core library to include
CORETAG=5.0.0
CORETAG=5.2.0

DST=datasketches-$VER

Expand Down
Loading