File tree Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,14 @@ jobs:
19
19
run : env USE_DOCKER=1 POSTGRES_VERSION=11 ./build-and-test.sh
20
20
- name : Test on PG12
21
21
run : env USE_DOCKER=1 POSTGRES_VERSION=12 ./build-and-test.sh
22
+ - name : Test on PG13
23
+ run : env USE_DOCKER=1 POSTGRES_VERSION=13 ./build-and-test.sh
22
24
- name : Build for PG11
23
25
run : env POSTGRES_VERSION=11 ./docker-build-dist.sh
24
26
- name : Build for PG12
25
27
run : env POSTGRES_VERSION=12 ./docker-build-dist.sh
28
+ - name : Build for PG13
29
+ run : env POSTGRES_VERSION=13 ./docker-build-dist.sh
26
30
- name : Create Release
27
31
id : create_release
28
32
uses : actions/create-release@v1
51
55
asset_path : ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg12.tar.gz
52
56
asset_name : postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg12.tar.gz
53
57
asset_content_type : application/gzip
58
+ - name : Upload PG13 tarball
59
+ uses : actions/upload-release-asset@v1
60
+ env :
61
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
+ with :
63
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
64
+ asset_path : ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg13.tar.gz
65
+ asset_name : postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg13.tar.gz
66
+ asset_content_type : application/gzip
Original file line number Diff line number Diff line change
1
+ name : Tests on PG13
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+
7
+ build :
8
+
9
+ runs-on : ubuntu-18.04
10
+
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Build and run tests in Docker
14
+ run : env USE_DOCKER=1 POSTGRES_VERSION=13 ./build-and-test.sh
Original file line number Diff line number Diff line change 2
2
3
3
![ Tests on PG11] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG11/badge.svg )
4
4
![ Tests on PG12] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG12/badge.svg )
5
+ ![ Tests on PG13] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG13/badge.svg )
5
6
6
7
Features:
7
8
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ extern "C" {
16
16
#include < catalog/pg_type.h>
17
17
#include < fmgr.h>
18
18
#include < funcapi.h>
19
+ #include < utils/array.h>
19
20
#include < utils/lsyscache.h>
20
21
} // extern "C"
21
22
You can’t perform that action at this time.
0 commit comments