Skip to content

Commit 519a626

Browse files
committed
chore: speed up CI
Before each pg test took almost ~20 mins. See https://github.com/supabase/pg_net/actions/runs/13710113927/job/38344639067 Now each one takes 2 mins max. This is thanks to `cachix`. Also a lot of files are deleted since the pg tooling is now centralized on https://github.com/steve-chavez/nxpg. This does change the way of testing from: ``` net-with-pg-13 python -m pytest -vv ``` To: ``` nxpg -v 13 test ``` But the speed up is worth it.
1 parent 1f5bfb4 commit 519a626

32 files changed

+94
-3769
lines changed

.github/workflows/main.yml

+48-25
Original file line numberDiff line numberDiff line change
@@ -11,50 +11,73 @@ jobs:
1111
pg-version: ['12', '13', '14', '15', '16', '17']
1212

1313
steps:
14-
- uses: actions/checkout@v1
15-
- uses: cachix/install-nix-action@v18
14+
- uses: actions/checkout@v4
15+
16+
- name: Install Nix
17+
uses: cachix/install-nix-action@v30
18+
19+
- name: Use Cachix Cache
20+
uses: cachix/cachix-action@v10
1621
with:
17-
nix_path: nixpkgs=channel:nixos-unstable
22+
name: nxpg
23+
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
24+
25+
- name: Build
26+
run: nix-shell --run "nxpg -v ${{ matrix.pg-version }} build"
1827

1928
- name: Run tests
20-
run: nix-shell --run "net-with-nginx net-with-pg-${{ matrix.pg-version }} python -m pytest -vv"
29+
run: nix-shell --run "nxpg -v ${{ matrix.pg-version }} test"
2130

22-
#- name: Check C files are formatted
23-
#run: nix-shell --run "net-check-format"
31+
# solve https://github.com/supabase/pg_net/pull/178#issuecomment-2722690110
32+
#test-on-macos:
33+
#runs-on: macos-15
2434

25-
test-on-macos:
26-
runs-on: macos-13
35+
#strategy:
36+
#matrix:
37+
#pg-version: ['15']
2738

28-
strategy:
29-
matrix:
30-
pg-version: ['17']
39+
#steps:
40+
#- uses: actions/checkout@v4
3141

32-
steps:
33-
- uses: actions/checkout@v4
34-
- uses: cachix/install-nix-action@v30
35-
with:
36-
nix_path: nixpkgs=channel:nixos-unstable
37-
- name: Run tests
38-
run: nix-shell --run "net-with-nginx net-with-pg-${{ matrix.pg-version }} python -m pytest -vv"
42+
#- name: Install Nix
43+
#uses: cachix/install-nix-action@v30
44+
#with:
45+
#nix_path: nixpkgs=channel:nixos-unstable
46+
47+
#- name: Use Cachix Cache
48+
#uses: cachix/cachix-action@v10
49+
#with:
50+
#name: nxpg
51+
#authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
52+
53+
#- name: Build
54+
#run: nix-shell --run "nxpg -v ${{ matrix.pg-version }} build"
55+
56+
#- name: Run tests
57+
#run: nix-shell --run "nxpg -v ${{ matrix.pg-version }} test"
3958

4059
coverage:
4160

4261
runs-on: ubuntu-latest
4362

4463
strategy:
4564
matrix:
46-
pg-version: ['16']
65+
pg-version: ['17']
4766

4867
steps:
4968
- uses: actions/checkout@v4
69+
70+
- name: Install Nix
71+
uses: cachix/install-nix-action@v30
72+
73+
- name: Use Cachix Cache
74+
uses: cachix/cachix-action@v10
5075
with:
51-
submodules: true
52-
- uses: cachix/install-nix-action@v18
53-
with:
54-
nix_path: nixpkgs=channel:nixos-unstable
76+
name: nxpg
77+
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
5578

56-
- name: Run coverage
57-
run: nix-shell --run "net-with-nginx net-with-pg-${{ matrix.pg-version }} nxpg-coverage"
79+
- name: Coverage
80+
run: nix-shell --run "nxpg -v ${{ matrix.pg-version }} coverage"
5881

5982
- name: Send coverage to Coveralls
6083
uses: coverallsapp/[email protected]

Makefile

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
SRC_DIR = src
2+
BUILD_DIR ?= build
3+
14
# the `-Wno`s quiet C90 warnings
25
PG_CFLAGS = -std=c11 -Wextra -Wall -Werror \
36
-Wno-declaration-after-statement \
@@ -19,22 +22,36 @@ REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
1922
REGRESS_OPTS = --use-existing --inputdir=test
2023

2124
MODULE_big = $(EXTENSION)
22-
SRC = $(wildcard src/*.c)
23-
OBJS = $(patsubst src/%.c, src/%.o, $(SRC))
25+
SRC = $(wildcard $(SRC_DIR)/*.c)
26+
OBJS = $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.o, $(SRC))
2427

2528
PG_CONFIG = pg_config
2629
SHLIB_LINK = -lcurl
2730

2831
# Find <curl/curl.h> from system headers
2932
PG_CPPFLAGS := $(CPPFLAGS) -DEXTVERSION=\"$(EXTVERSION)\"
3033

31-
all: $(EXTENSION)--$(EXTVERSION).sql $(EXTENSION).control
34+
build: $(BUILD_DIR)/$(EXTENSION).so $(BUILD_DIR)/$(EXTENSION)--$(EXTVERSION).sql $(BUILD_DIR)/$(EXTENSION).control
35+
36+
$(BUILD_DIR)/.gitignore:
37+
mkdir -p $(BUILD_DIR)
38+
echo "*" > $(BUILD_DIR)/.gitignore
39+
40+
$(BUILD_DIR)/%.o: $(SRC_DIR)/%.c $(BUILD_DIR)/.gitignore
41+
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
3242

33-
$(EXTENSION)--$(EXTVERSION).sql: sql/$(EXTENSION).sql
43+
$(BUILD_DIR)/$(EXTENSION)--$(EXTVERSION).sql: sql/$(EXTENSION).sql
3444
cp $< $@
3545

36-
$(EXTENSION).control:
37-
sed "s/@PG_NET_VERSION@/$(EXTVERSION)/g" $(EXTENSION).control.in > $(EXTENSION).control
46+
$(BUILD_DIR)/$(EXTENSION).control:
47+
sed "s/@PG_NET_VERSION@/$(EXTVERSION)/g" $(EXTENSION).control.in > $@
48+
49+
$(BUILD_DIR)/$(EXTENSION).so: $(EXTENSION).so
50+
mv $? $@
3851

3952
PGXS := $(shell $(PG_CONFIG) --pgxs)
4053
include $(PGXS)
54+
55+
.PHONY: test
56+
test:
57+
net-with-nginx python -m pytest -vv

docs/contributing.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@ pg_net is OSS. PR and issues are welcome.
33

44
## Development
55

6-
[Nix](https://nixos.org/download.html) is required to set up the environment.
6+
[Nix](https://nixos.org/download.html) is required to set up the environment and [Cachix](https://docs.cachix.org/installation) for cache usage.
7+
78

89
### Testing
910

1011
For testing locally, execute:
1112

1213
```bash
14+
$ cachix use nxpg
15+
1316
# might take a while in downloading all the dependencies
1417
$ nix-shell
1518

1619
# test on pg 12
17-
$ net-with-pg-12 python -m pytest -vv
20+
$ nxpg -v 12 test
1821

1922
# test on pg 13
20-
$ net-with-pg-13 python -m pytest -vv
23+
$ nxpg -v 13 test
2124
```
2225

2326
### Debugging

nix/format.nix

-13
This file was deleted.

nix/gdbScript.nix

-20
This file was deleted.

nix/nxpg.nix

+8-138
Original file line numberDiff line numberDiff line change
@@ -1,141 +1,11 @@
1-
{ stdenv, lib, makeWrapper, fetchurl, writeShellScriptBin, findutils, entr, callPackage, lcov, pidFileName, gnused, python3 } :
1+
{ fetchFromGitHub } :
22
let
3-
prefix = "nxpg";
4-
ourPg = callPackage ./postgresql {
5-
inherit lib;
6-
inherit stdenv;
7-
inherit fetchurl;
8-
inherit makeWrapper;
9-
inherit callPackage;
3+
nxpg = fetchFromGitHub {
4+
owner = "steve-chavez";
5+
repo = "nxpg";
6+
rev = "v1.1";
7+
sha256 = "sha256-R0Z2vDjFtkrFgetL1L/N1iWN0Bh+TWBZ7VZLDARJ3pY=";
108
};
11-
supportedPgs = [
12-
ourPg.postgresql_17
13-
ourPg.postgresql_16
14-
ourPg.postgresql_15
15-
ourPg.postgresql_14
16-
ourPg.postgresql_13
17-
ourPg.postgresql_12
18-
];
19-
build =
20-
writeShellScriptBin "${prefix}-build" ''
21-
set -euo pipefail
22-
23-
make clean
24-
make
25-
'';
26-
buildCov =
27-
writeShellScriptBin "${prefix}-build-cov" ''
28-
set -euo pipefail
29-
30-
make clean
31-
make COVERAGE=1
32-
'';
33-
test =
34-
writeShellScriptBin "${prefix}-test" ''
35-
set -euo pipefail
36-
37-
${python3}/bin/python -m pytest -vv "$@"
38-
'';
39-
cov =
40-
writeShellScriptBin "${prefix}-coverage" ''
41-
set -euo pipefail
42-
43-
info_file="coverage.info"
44-
out_dir="coverage_html"
45-
46-
${python3}/bin/python -m pytest -vv "$@"
47-
48-
${lcov}/bin/lcov --capture --directory . --output-file "$info_file"
49-
50-
# remove postgres headers on the nix store, otherwise they show on the output
51-
${lcov}/bin/lcov --remove "$info_file" '/nix/*' --output-file "$info_file" || true
52-
53-
${lcov}/bin/lcov --list coverage.info
54-
${lcov}/bin/genhtml "$info_file" --output-directory "$out_dir"
55-
56-
echo "${prefix}-coverage: To see the results, visit file://$(pwd)/$out_dir/index.html on your browser"
57-
'';
58-
watch =
59-
writeShellScriptBin "${prefix}-watch" ''
60-
set -euo pipefail
61-
62-
${findutils}/bin/find . -type f \( -name '*.c' -o -name '*.h' \) | ${entr}/bin/entr -dr "$@"
63-
'';
64-
65-
tmpDb =
66-
writeShellScriptBin "${prefix}-tmp" ''
67-
set -euo pipefail
68-
69-
export tmpdir="$(mktemp -d)"
70-
71-
export PGDATA="$tmpdir"
72-
export PGHOST="$tmpdir"
73-
export PGUSER=postgres
74-
export PGDATABASE=postgres
75-
76-
trap 'pg_ctl stop -m i && rm -rf "$tmpdir" && rm ${pidFileName}' sigint sigterm exit
77-
78-
PGTZ=UTC initdb --no-locale --encoding=UTF8 --nosync -U "$PGUSER"
79-
80-
# pg versions older than 16 don't support adding "-c" to initdb to add these options
81-
# so we just modify the resulting postgresql.conf to avoid an error
82-
echo "dynamic_library_path='\$libdir:$(pwd)'" >> $PGDATA/postgresql.conf
83-
echo "extension_control_path='\$system:$(pwd)'" >> $PGDATA/postgresql.conf
84-
85-
options="-F -c listen_addresses=\"\" -c log_min_messages=\"''${LOG_MIN_MESSAGES:-INFO}\" -k $PGDATA"
86-
87-
ext_options="-c shared_preload_libraries=\"pg_net\""
88-
89-
pg_ctl start -o "$options" -o "$ext_options"
90-
91-
psql -v ON_ERROR_STOP=1 -c "create database pre_existing" -d postgres
92-
93-
psql -v ON_ERROR_STOP=1 -c "create role pre_existing nosuperuser login" -d postgres
94-
95-
psql -v ON_ERROR_STOP=1 -c "create extension pg_net" -d postgres
96-
97-
psql -t -c "\o ${pidFileName}" -c "select pid from pg_stat_activity where backend_type ilike '%pg_net%'"
98-
99-
${gnused}/bin/sed '/^''$/d;s/[[:blank:]]//g' -i ${pidFileName}
100-
101-
psql -f ${./bench.sql}
102-
103-
"$@"
104-
'';
105-
allPgPaths = map (pg:
106-
let
107-
ver = builtins.head (builtins.splitVersion pg.version);
108-
script = ''
109-
set -euo pipefail
110-
111-
export PATH=${pg}/bin:"$PATH"
112-
113-
"$@"
114-
'';
115-
in
116-
writeShellScriptBin "${prefix}-${ver}" script
117-
) supportedPgs;
118-
119-
netWith = map (pg:
120-
let
121-
ver = builtins.head (builtins.splitVersion pg.version);
122-
script = ''
123-
set -euo pipefail
124-
export PATH=${pg}/bin:"$PATH"
125-
${buildCov}/bin/${prefix}-build-cov
126-
${tmpDb}/bin/${prefix}-tmp "$@"
127-
'';
128-
in
129-
writeShellScriptBin "net-with-pg-${ver}" script
130-
) supportedPgs;
9+
script = import nxpg;
13110
in
132-
[
133-
build
134-
buildCov
135-
test
136-
cov
137-
watch
138-
tmpDb
139-
allPgPaths
140-
netWith
141-
]
11+
script

nix/postgresql/12.nix

-4
This file was deleted.

nix/postgresql/13.nix

-4
This file was deleted.

nix/postgresql/14.nix

-10
This file was deleted.

nix/postgresql/15.nix

-4
This file was deleted.

nix/postgresql/16.nix

-4
This file was deleted.

nix/postgresql/17.nix

-4
This file was deleted.

0 commit comments

Comments
 (0)