Skip to content

Commit 49ec36f

Browse files
committed
test(lds): Upgrade wal2json version to 2.6
… and try to ignore the `software-properties-common` package that is not available on Debian 13 and later? (I have no idea what I'm doing)
1 parent a5226de commit 49ec36f

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci/docker-entrypoint-initdb.d/020-wal2json.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,22 @@ set -e
55
# https://github.com/debezium/docker-images/blob/master/postgres/11/Dockerfile
66

77
PROTOC_VERSION=1.3
8-
WAL2JSON_COMMIT_ID=c54d89649c3fe5e0aa79c3a87493935232e962a7
8+
WAL2JSON_COMMIT_ID=wal2json_2_6
99
USE_PGXS=1
1010
export PGUSER=postgres
1111
export PGPASSWORD=postgres
1212
createuser --superuser root
1313

1414
apt-get update
1515
apt-get install -f -y --no-install-recommends \
16-
software-properties-common \
16+
apt-transport-https \
17+
ca-certificates \
1718
build-essential \
1819
pkg-config \
1920
git \
2021
postgresql-server-dev-$PG_MAJOR
21-
add-apt-repository "deb http://ftp.debian.org/debian testing main contrib"
22-
apt-get update
22+
# add-apt-repository "deb http://ftp.debian.org/debian testing main contrib"
23+
# apt-get update
2324
rm -rf /var/lib/apt/lists/*
2425

2526
cd /

0 commit comments

Comments
 (0)