Skip to content
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

Fix the failing CI jobs #2

Merged
merged 1 commit into from
Oct 20, 2023
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PG_MAJOR=14

PGCONSUL_IMAGE=pgconsul:behave
PROJECT=pgconsul
ZK_VERSION=3.7.1
ZK_VERSION=3.7.2
export ZK_VERSION
INSTALL_DIR=$(DESTDIR)/opt/yandex/pgconsul
REPLICATION_TYPE=quorum
Expand Down Expand Up @@ -50,7 +50,7 @@ install:
build:
cp -f docker/base/Dockerfile .
yes | ssh-keygen -m PEM -t rsa -N '' -f test_ssh_key -C jepsen || true
wget https://mirror.yandex.ru/mirrors/apache/zookeeper/zookeeper-$(ZK_VERSION)/apache-zookeeper-$(ZK_VERSION)-bin.tar.gz -nc -O docker/zookeeper/zookeeper-$(ZK_VERSION).tar.gz || true
wget https://dlcdn.apache.org/zookeeper/zookeeper-$(ZK_VERSION)/apache-zookeeper-$(ZK_VERSION)-bin.tar.gz -nc -O docker/zookeeper/zookeeper-$(ZK_VERSION).tar.gz || true
docker compose -p $(PROJECT) down --rmi all --remove-orphans
docker compose -p $(PROJECT) -f jepsen-compose.yml down --rmi all --remove-orphans
docker build -t pgconsulbase:latest . --label pgconsul_tests
Expand Down