File tree 3 files changed +28
-0
lines changed
3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 23
23
run : env USE_DOCKER=1 POSTGRES_VERSION=13 ./build-and-test.sh
24
24
- name : Test on PG14
25
25
run : env USE_DOCKER=1 POSTGRES_VERSION=14 ./build-and-test.sh
26
+ - name : Test on PG15
27
+ run : env USE_DOCKER=1 POSTGRES_VERSION=15 ./build-and-test.sh
26
28
- name : Build for PG11
27
29
run : env POSTGRES_VERSION=11 ./docker-build-dist.sh
28
30
- name : Build for PG12
31
33
run : env POSTGRES_VERSION=13 ./docker-build-dist.sh
32
34
- name : Build for PG14
33
35
run : env POSTGRES_VERSION=14 ./docker-build-dist.sh
36
+ - name : Build for PG15
37
+ run : env POSTGRES_VERSION=15 ./docker-build-dist.sh
34
38
- name : Create Release
35
39
id : create_release
36
40
uses : actions/create-release@v1
77
81
asset_path : ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg14.tar.gz
78
82
asset_name : postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg14.tar.gz
79
83
asset_content_type : application/gzip
84
+ - name : Upload PG15 tarball
85
+ uses : actions/upload-release-asset@v1
86
+ env :
87
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
88
+ with :
89
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
90
+ asset_path : ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg15.tar.gz
91
+ asset_name : postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg15.tar.gz
92
+ asset_content_type : application/gzip
Original file line number Diff line number Diff line change
1
+ name: Tests on PG15
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+
7
+ build:
8
+
9
+ runs-on: ubuntu-20.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=15 ./build-and-test.sh
Original file line number Diff line number Diff line change 4
4
![ Tests on PG12] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG12/badge.svg )
5
5
![ Tests on PG13] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG13/badge.svg )
6
6
![ Tests on PG14] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG14/badge.svg )
7
+ ![ Tests on PG15] ( https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG15/badge.svg )
7
8
8
9
Features:
9
10
You can’t perform that action at this time.
0 commit comments