Skip to content

Commit

Permalink
Adjust windows package test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
svenklemm committed Feb 7, 2025
1 parent caa6568 commit 6d65db5
Showing 1 changed file with 4 additions and 20 deletions.
24 changes: 4 additions & 20 deletions .github/workflows/windows-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ jobs:
config:
runs-on: ubuntu-latest
outputs:
pg14_earliest: ${{ steps.config.outputs.pg14_abi_min }}
pg15_earliest: ${{ steps.config.outputs.pg15_abi_min }}
pg16_earliest: ${{ steps.config.outputs.pg16_abi_min }}
pg17_earliest: ${{ steps.config.outputs.pg17_abi_min }}
pg14_latest: ${{ steps.config.outputs.pg14_latest }}
pg15_latest: ${{ steps.config.outputs.pg15_latest }}
pg16_latest: ${{ steps.config.outputs.pg16_latest }}
Expand All @@ -42,29 +38,17 @@ jobs:
fail-fast: false
matrix:
os: [ windows-2019 ]
test: [ "14min", "14max", "15min", "15max", "16min", "16max", "17min", "17max" ]
test: [ "14min", , "15max", "16max", "17max" ]

Check failure on line 41 in .github/workflows/windows-packages.yaml

View workflow job for this annotation

GitHub Actions / Check YAML code in tree

41:26 syntax error: expected the node content, but found ',' (syntax)
include:
- test: 14min
pg: 14
pkg_version: ${{ fromJson(needs.config.outputs.pg14_earliest) }}.1
- test: 14max
pg: 14
pkg_version: 14.10.0 # hardcoded since 14.11 is not available yet
- test: 15min
pg: 15
pkg_version: ${{ fromJson(needs.config.outputs.pg15_earliest) }}.1
pkg_version: ${{ fromJson(needs.config.outputs.pg14_latest) }}.0
- test: 15max
pg: 15
pkg_version: 15.5.0 # hardcoded since 15.6 is not available yet
- test: 16min
pg: 16
pkg_version: ${{ fromJson(needs.config.outputs.pg16_earliest) }}.0
pkg_version: ${{ fromJson(needs.config.outputs.pg15_latest) }}.0
- test: 16max
pg: 16
pkg_version: 16.1.0 # hardcoded since 16.2 is not available yet
- test: 17min
pg: 17
pkg_version: ${{ fromJson(needs.config.outputs.pg17_earliest) }}.0
pkg_version: ${{ fromJson(needs.config.outputs.pg16_latest) }}.0
- test: 17max
pg: 17
pkg_version: ${{ fromJson(needs.config.outputs.pg17_latest) }}.0
Expand Down

0 comments on commit 6d65db5

Please sign in to comment.