mirror of https://github.com/citusdata/citus.git
Upgrade uncrustify to 0.82.0
parent
31911d8297
commit
e9824f7c0a
|
|
@ -113,10 +113,10 @@ FROM base AS uncrustify-builder
|
||||||
RUN sudo apt update && sudo apt install -y cmake tree
|
RUN sudo apt update && sudo apt install -y cmake tree
|
||||||
|
|
||||||
WORKDIR /uncrustify
|
WORKDIR /uncrustify
|
||||||
RUN curl -L https://github.com/uncrustify/uncrustify/archive/uncrustify-0.68.1.tar.gz | tar xz
|
RUN curl -L https://github.com/uncrustify/uncrustify/archive/uncrustify-0.82.0.tar.gz | tar xz
|
||||||
WORKDIR /uncrustify/uncrustify-uncrustify-0.68.1/
|
WORKDIR /uncrustify/uncrustify-uncrustify-0.82.0/
|
||||||
RUN mkdir build
|
RUN mkdir build
|
||||||
WORKDIR /uncrustify/uncrustify-uncrustify-0.68.1/build/
|
WORKDIR /uncrustify/uncrustify-uncrustify-0.82.0/build/
|
||||||
RUN cmake ..
|
RUN cmake ..
|
||||||
RUN MAKEFLAGS="-j $(nproc)" make -s
|
RUN MAKEFLAGS="-j $(nproc)" make -s
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,9 +30,9 @@ jobs:
|
||||||
fail_test_image_name: "ghcr.io/citusdata/failtester"
|
fail_test_image_name: "ghcr.io/citusdata/failtester"
|
||||||
pgupgrade_image_name: "ghcr.io/citusdata/pgupgradetester"
|
pgupgrade_image_name: "ghcr.io/citusdata/pgupgradetester"
|
||||||
style_checker_image_name: "ghcr.io/citusdata/stylechecker"
|
style_checker_image_name: "ghcr.io/citusdata/stylechecker"
|
||||||
style_checker_tools_version: "0.8.18"
|
style_checker_tools_version: "test"
|
||||||
sql_snapshot_pg_version: "17.6"
|
sql_snapshot_pg_version: "17.6"
|
||||||
image_suffix: "-va20872f"
|
image_suffix: "-dev-57f9967"
|
||||||
pg15_version: '{ "major": "15", "full": "15.14" }'
|
pg15_version: '{ "major": "15", "full": "15.14" }'
|
||||||
pg16_version: '{ "major": "16", "full": "16.10" }'
|
pg16_version: '{ "major": "16", "full": "16.10" }'
|
||||||
pg17_version: '{ "major": "17", "full": "17.6" }'
|
pg17_version: '{ "major": "17", "full": "17.6" }'
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,9 @@ tool. This tool uses `uncrustify` under the hood.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Uncrustify changes the way it formats code every release a bit. To make sure
|
# Uncrustify changes the way it formats code every release a bit. To make sure
|
||||||
# everyone formats consistently we use version 0.68.1:
|
# everyone formats consistently we use version 0.82.0:
|
||||||
curl -L https://github.com/uncrustify/uncrustify/archive/uncrustify-0.68.1.tar.gz | tar xz
|
curl -L https://github.com/uncrustify/uncrustify/archive/uncrustify-0.82.0.tar.gz | tar xz
|
||||||
cd uncrustify-uncrustify-0.68.1/
|
cd uncrustify-uncrustify-0.82.0/
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue