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
2 changes: 1 addition & 1 deletion circleci/images/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PG_VERSIONS=$(shell cat PG_VERSIONS|cut -c 6-|tr '\n' ' ' )

PG_UPGRADE_TESTER_VERSION=$(shell echo ${PG_VERSIONS}|tr ' ' '-'|sed 's/~//g')

STYLE_CHECKER_TOOLS_VERSION=0.8.18
STYLE_CHECKER_TOOLS_VERSION=0.8.33

# Upgrade tests for the PG major versions from PG_VERSIONS file
CITUS_UPGRADE_PG_VERSIONS=$(shell head PG_VERSIONS|cut -c 6-|tr '\n' ' ')
Expand Down
6 changes: 3 additions & 3 deletions circleci/images/PG_VERSIONS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PG15=15.15
PG16=16.11
PG17=17.7
PG15=15.14
PG16=16.10
PG17=17.6
6 changes: 3 additions & 3 deletions circleci/images/stylechecker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ make uncrustify/.install
cd ..
rm -rf "v${TOOLS_VERSION}.tar.gz"

curl -L "https://github.com/uncrustify/uncrustify/archive/uncrustify-0.68.1.tar.gz" | tar xz
cd uncrustify-uncrustify-0.68.1/
curl -L "https://github.com/uncrustify/uncrustify/archive/uncrustify-0.82.0.tar.gz" | tar xz
cd uncrustify-uncrustify-0.82.0/
mkdir build
cd build
cmake ..
make -j5
make install
cd ../..
rm -rf uncrustify-uncrustify-0.68.1/
rm -rf uncrustify-uncrustify-0.82.0/

# this image is only used for testing purposes, so should be okay to overwrite system-managed packages
pip3 install -Ir /tmp/etc/requirements.txt --break-system-packages
Expand Down