Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for PG15 windows package #5110

Merged
merged 1 commit into from Dec 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/windows-packages.yaml
Expand Up @@ -4,6 +4,7 @@ on:
schedule:
# run daily 0:00 on main branch
- cron: '0 0 * * *'
pull_request:
push:
tags:
- '*'
Expand All @@ -16,9 +17,11 @@ jobs:
pg12_earliest: ${{ steps.config.outputs.pg12_abi_min }}
pg13_earliest: ${{ steps.config.outputs.pg13_abi_min }}
pg14_earliest: ${{ steps.config.outputs.pg14_abi_min }}
pg15_earliest: ${{ steps.config.outputs.pg15_abi_min }}
pg12_latest: ${{ steps.config.outputs.pg12_latest }}
pg13_latest: ${{ steps.config.outputs.pg13_latest }}
pg14_latest: ${{ steps.config.outputs.pg14_latest }}
pg15_latest: ${{ steps.config.outputs.pg15_latest }}

steps:
- name: Checkout source code
Expand Down Expand Up @@ -55,6 +58,12 @@ jobs:
- test: 14max
pg: 14
pkg_version: ${{ fromJson(needs.config.outputs.pg14_latest) }}.1
- test: 15min
pg: 15
pkg_version: ${{ fromJson(needs.config.outputs.pg15_earliest) }}.1
- test: 15max
pg: 15
pkg_version: ${{ fromJson(needs.config.outputs.pg15_latest) }}.1
env:
# PostgreSQL configuration
PGPORT: 6543
Expand Down