Skip to content

Commit b632b61

Browse files
committed
Build env version bumps
1 parent f9f228b commit b632b61

File tree

7 files changed

+22
-23
lines changed

7 files changed

+22
-23
lines changed

.github/workflows/tests-pg11.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Tests on PG11
22

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

55
jobs:
66

77
build:
88

9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Build and run tests in Docker
1414
run: env USE_DOCKER=1 POSTGRES_VERSION=11 ./build-and-test.sh

.github/workflows/tests-pg12.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Tests on PG12
22

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

55
jobs:
66

77
build:
88

9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Build and run tests in Docker
1414
run: env USE_DOCKER=1 POSTGRES_VERSION=12 ./build-and-test.sh

.github/workflows/tests-pg13.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Tests on PG13
22

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

55
jobs:
66

77
build:
88

9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Build and run tests in Docker
1414
run: env USE_DOCKER=1 POSTGRES_VERSION=13 ./build-and-test.sh

.github/workflows/tests-pg14.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Tests on PG14
22

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

55
jobs:
66

77
build:
88

9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Build and run tests in Docker
1414
run: env USE_DOCKER=1 POSTGRES_VERSION=14 ./build-and-test.sh

.github/workflows/tests-pg15.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Tests on PG15
22

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

55
jobs:
66

77
build:
88

9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Build and run tests in Docker
1414
run: env USE_DOCKER=1 POSTGRES_VERSION=15 ./build-and-test.sh

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:22.04
22

33
RUN apt-get update \
44
&& apt-get install -y curl gnupg2 zlib1g-dev \
5-
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
5+
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
66
&& curl -sL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
77
&& apt-get update \
88
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# Protocol Buffer extension for PostgreSQL
2-
3-
![Tests on PG11](https://github.com/mpartel/postgres-protobuf/workflows/Tests%20on%20PG11/badge.svg)
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)
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)
2+
[![Tests on PG11](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg11.yml/badge.svg?branch=master)](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg11.yml)
3+
[![Tests on PG12](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg12.yml/badge.svg?branch=master)](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg12.yml)
4+
[![Tests on PG13](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg13.yml/badge.svg?branch=master)](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg13.yml)
5+
[![Tests on PG14](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg14.yml/badge.svg?branch=master)](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg14.yml)
6+
[![Tests on PG15](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg15.yml/badge.svg?branch=master)](https://github.com/mpartel/postgres-protobuf/actions/workflows/tests-pg15.yml)
87

98
Features:
109

0 commit comments

Comments
 (0)