Skip to content

Commit

Permalink
Merge pull request sorintlab#852 from sgotti/postgres14
Browse files Browse the repository at this point in the history
 *: add support for PostgreSQL 14
  • Loading branch information
sgotti authored Oct 7, 2021
2 parents a54e88e + a0ff689 commit 3bb7499
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .agola/config.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,15 @@ local task_build_push_images(name, pgversions, istag, push) =
task_integration_tests(store, pgversion, 'amd64'),
]
for store in ['etcdv2', 'consul']
for pgversion in ['13']
for pgversion in ['14']
]) + std.flattenArrays([
[
task_integration_tests(store, pgversion, 'amd64'),
]
for store in ['etcdv3']
for pgversion in [ '9.6', '10', '11', '12', '13']
for pgversion in [ '10', '11', '12', '13', '14']
]) + [
task_build_push_images('test build docker "stolon" images', '9.6 10 11 12 13', false, false)
task_build_push_images('test build docker "stolon" images', '10 11 12 13 14', false, false)
+ {
when: {
branch: {
Expand All @@ -190,13 +190,13 @@ local task_build_push_images(name, pgversions, istag, push) =
ref: '#refs/pull/\\d+/head#',
},
},
task_build_push_images('build and push docker "stolon" master branch images', '9.6 10 11 12 13', false, true)
task_build_push_images('build and push docker "stolon" master branch images', '10 11 12 13 14', false, true)
+ {
when: {
branch: 'master',
},
},
task_build_push_images('build and push docker "stolon" tag images', '9.6 10 11 12 13', true, true)
task_build_push_images('build and push docker "stolon" tag images', '10 11 12 13 14', true, true)
+ {
when: {
tag: '#v.*#',
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Anyway it's quite easy to reset a cluster from scratch keeping the current maste

## Requirements

* PostgreSQL 12, 11, 10 or 9 (9.4, 9.5, 9.6)
* PostgreSQL 14, 13, 12, 11, 10, 9.6
* etcd2 >= v2.0, etcd3 >= v3.0, consul >= v0.6 or kubernetes >= 1.8 (based on the store you're going to use)

* OS: currently stolon is tested on GNU/Linux (with reports of people using it also on Solaris, *BSD and Darwin)
Expand Down

0 comments on commit 3bb7499

Please sign in to comment.