mirror of https://github.com/citusdata/citus.git
more maintenance
parent
64c8b2d43f
commit
6fc8ddc5b2
|
@ -1,35 +0,0 @@
|
||||||
{
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "Citus Development Configuration - Postgres 15.3",
|
|
||||||
"includePath": [
|
|
||||||
"/usr/local/include",
|
|
||||||
"/home/citus/.pgenv/src/postgresql-15.3/src/**",
|
|
||||||
"${workspaceFolder}/**",
|
|
||||||
"${workspaceFolder}/src/include/",
|
|
||||||
],
|
|
||||||
"configurationProvider": "ms-vscode.makefile-tools"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Citus Development Configuration - Postgres 14.8",
|
|
||||||
"includePath": [
|
|
||||||
"/usr/local/include",
|
|
||||||
"/home/citus/.pgenv/src/postgresql-14.8/src/**",
|
|
||||||
"${workspaceFolder}/**",
|
|
||||||
"${workspaceFolder}/src/include/",
|
|
||||||
],
|
|
||||||
"configurationProvider": "ms-vscode.makefile-tools"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Citus Development Configuration - Postgres 16beta2",
|
|
||||||
"includePath": [
|
|
||||||
"/usr/local/include",
|
|
||||||
"/home/citus/.pgenv/src/postgresql-16beta2/src/**",
|
|
||||||
"${workspaceFolder}/**",
|
|
||||||
"${workspaceFolder}/src/include/",
|
|
||||||
],
|
|
||||||
"configurationProvider": "ms-vscode.makefile-tools"
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"version": 4
|
|
||||||
}
|
|
|
@ -55,6 +55,7 @@ FROM base AS pg14
|
||||||
RUN pgenv build 14.8
|
RUN pgenv build 14.8
|
||||||
RUN rm .pgenv/src/*.tar*
|
RUN rm .pgenv/src/*.tar*
|
||||||
RUN make -C .pgenv/src/postgresql-*/ clean
|
RUN make -C .pgenv/src/postgresql-*/ clean
|
||||||
|
RUN make -C .pgenv/src/postgresql-*/include install
|
||||||
|
|
||||||
# create a staging directory with all files we want to copy from our pgenv build
|
# create a staging directory with all files we want to copy from our pgenv build
|
||||||
# we will copy the contents of the staged folder into the final image at once
|
# we will copy the contents of the staged folder into the final image at once
|
||||||
|
@ -66,6 +67,7 @@ FROM base AS pg15
|
||||||
RUN pgenv build 15.3
|
RUN pgenv build 15.3
|
||||||
RUN rm .pgenv/src/*.tar*
|
RUN rm .pgenv/src/*.tar*
|
||||||
RUN make -C .pgenv/src/postgresql-*/ clean
|
RUN make -C .pgenv/src/postgresql-*/ clean
|
||||||
|
RUN make -C .pgenv/src/postgresql-*/include install
|
||||||
|
|
||||||
# create a staging directory with all files we want to copy from our pgenv build
|
# create a staging directory with all files we want to copy from our pgenv build
|
||||||
# we will copy the contents of the staged folder into the final image at once
|
# we will copy the contents of the staged folder into the final image at once
|
||||||
|
@ -77,6 +79,7 @@ FROM base AS pg16
|
||||||
RUN pgenv build 16beta2
|
RUN pgenv build 16beta2
|
||||||
RUN rm .pgenv/src/*.tar*
|
RUN rm .pgenv/src/*.tar*
|
||||||
RUN make -C .pgenv/src/postgresql-*/ clean
|
RUN make -C .pgenv/src/postgresql-*/ clean
|
||||||
|
RUN make -C .pgenv/src/postgresql-*/include install
|
||||||
|
|
||||||
# create a staging directory with all files we want to copy from our pgenv build
|
# create a staging directory with all files we want to copy from our pgenv build
|
||||||
# we will copy the contents of the staged folder into the final image at once
|
# we will copy the contents of the staged folder into the final image at once
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
init: ../.vscode/c_cpp_properties.json ../.vscode/launch.json
|
init: ../.vscode/c_cpp_properties.json ../.vscode/launch.json
|
||||||
|
|
||||||
../.vscode:
|
../.vscode:
|
||||||
mkdir ../.vscode
|
mkdir -p ../.vscode
|
||||||
|
|
||||||
../.vscode/launch.json: ../.vscode
|
../.vscode/launch.json: ../.vscode .vscode/launch.json
|
||||||
cp .vscode/launch.json ../.vscode/launch.json
|
cp .vscode/launch.json ../.vscode/launch.json
|
||||||
|
|
||||||
../.vscode/c_cpp_properties.json: ../.vscode
|
../.vscode/c_cpp_properties.json: ../.vscode
|
||||||
|
|
Loading…
Reference in New Issue