diff --git a/circleci/images/Makefile b/circleci/images/Makefile index 52be4ca..32d78ed 100644 --- a/circleci/images/Makefile +++ b/circleci/images/Makefile @@ -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' ' ') diff --git a/circleci/images/PG_VERSIONS b/circleci/images/PG_VERSIONS index f31c553..5d2c6c9 100644 --- a/circleci/images/PG_VERSIONS +++ b/circleci/images/PG_VERSIONS @@ -1,3 +1,3 @@ -PG15=15.15 -PG16=16.11 -PG17=17.7 +PG15=15.14 +PG16=16.10 +PG17=17.6 diff --git a/circleci/images/stylechecker/Dockerfile b/circleci/images/stylechecker/Dockerfile index 23d3507..e6db9c8 100644 --- a/circleci/images/stylechecker/Dockerfile +++ b/circleci/images/stylechecker/Dockerfile @@ -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