-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update postgres versions to 14, 15
- Loading branch information
1 parent
46d46f9
commit 242722e
Showing
7 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.ci/postgres/server_v12.Dockerfile → .ci/postgres/server_v14.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.ci/postgres/server_v13.Dockerfile → .ci/postgres/server_v15.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
name: postgres | ||
on: [push, pull_request] | ||
jobs: | ||
v12: | ||
name: postgres v12 | ||
v14: | ||
name: postgres v14 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Build environment and run tests | ||
run: make -f ci.Makefile ci-postgres12-up | ||
run: make -f ci.Makefile ci-postgres14-up | ||
- name: Upload code coverage | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
fail_ci_if_error: true | ||
files: /tmp/cover.out,/tmp/cover_driver.out | ||
verbose: true | ||
- name: Teardown | ||
run: make -f ci.Makefile ci-postgres12-down | ||
v13: | ||
name: postgres v13 | ||
run: make -f ci.Makefile ci-postgres14-down | ||
v15: | ||
name: postgres v15 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Build environment and run tests | ||
run: make -f ci.Makefile ci-postgres13-up | ||
run: make -f ci.Makefile ci-postgres15-up | ||
- name: Upload code coverage | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
fail_ci_if_error: true | ||
files: /tmp/cover.out,/tmp/cover_driver.out | ||
verbose: true | ||
- name: Teardown | ||
run: make -f ci.Makefile ci-postgres13-down | ||
run: make -f ci.Makefile ci-postgres15-down |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters