Skip to content

Commit 5f50f03

Browse files
committed
test: on pg 12, 13, 14, 15, 16
1 parent dad81d4 commit 5f50f03

File tree

3 files changed

+21
-14
lines changed

3 files changed

+21
-14
lines changed

.github/workflows/ci.yaml

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
name: CI
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
test:
77

88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
pg-version: ['15']
11+
pg-version: ['12', '13', '14', '15', '16']
1212

1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: cachix/install-nix-action@v18
16-
with:
17-
nix_path: nixpkgs=channel:nixos-unstable
18-
- name: Run tests pg_${{ matrix.postgres-version }}
19-
run: nix-shell --run "with-pg-${{ matrix.pg-version }} make installcheck"
14+
- uses: actions/checkout@v3
15+
- uses: cachix/install-nix-action@v18
16+
with:
17+
nix_path: nixpkgs=channel:nixos-unstable
18+
- name: Run tests
19+
run: nix-shell --run "with-pg-${{ matrix.pg-version }} make installcheck"
20+
- if: ${{ failure() }}
21+
run: cat output/regression.diffs

shell.nix

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
with import (builtins.fetchTarball {
2-
name = "2022-10-14";
3-
url = "https://github.com/NixOS/nixpkgs/archive/cc090d2b942f76fad83faf6e9c5ed44b73ba7114.tar.gz";
4-
sha256 = "0a1wwpbn2f38pcays6acq1gz19vw4jadl8yd3i3cd961f1x2vdq2";
2+
name = "2023-09-16";
3+
url = "https://github.com/NixOS/nixpkgs/archive/ae5b96f3ab6aabb60809ab78c2c99f8dd51ee678.tar.gz";
4+
sha256 = "11fpdcj5xrmmngq0z8gsc3axambqzvyqkfk23jn3qkx9a5x56xxk";
55
}) {};
66
mkShell {
77
buildInputs =
88
let
99
extensionName = "plmustache";
10-
supportedPgVersions = [ postgresql_15 ];
10+
supportedPgVersions = [
11+
postgresql_16
12+
postgresql_15
13+
postgresql_14
14+
postgresql_13
15+
postgresql_12
16+
];
1117
mustach = callPackage ./nix/mustach.nix {};
1218
pgWExtension = { postgresql }: postgresql.withPackages (p: [ (callPackage ./nix/pgExtension.nix { inherit postgresql extensionName mustach; }) ]);
1319
extAll = map (x: callPackage ./nix/pgScript.nix { postgresql = pgWExtension { postgresql = x;}; }) supportedPgVersions;

src/plmustache.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
#include <funcapi.h>
1010
#include <catalog/pg_proc.h>
1111
#include <catalog/pg_type.h>
12+
#include <access/htup_details.h>
1213

1314
#include <mustach/mustach.h>
1415

15-
#include <errno.h>
16-
1716
PG_MODULE_MAGIC;
1817

1918
#define IMPLICIT_ITERATOR "."

0 commit comments

Comments
 (0)