Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Re-disable Windows
  • Loading branch information
kyleconroy committed Jan 20, 2025
commit ac2d365f47514e88db4fa43ff820a2423132c491
23 changes: 12 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,21 @@ jobs:
test:
strategy:
matrix:
# Disabling windows builds while we figure out why they're broken
os: [ubuntu-22.04, macos-14, windows-2022]
# Disabling windows builds while we fix installing PostgreSQL 16
# os: [ubuntu-22.04, macos-14, windows-2022]
os: [ubuntu-22.04, macos-14]
cgo: ['1', '0']
# Workaround no native support for conditional matrix items
# https://github.com/orgs/community/discussions/26253#discussioncomment-6745038
# isMain:
# - ${{ github.ref == 'refs/heads/main' }}
# exclude:
# - isMain: false
# include:
# - os: ubuntu-22.04
# cgo: '1'
# - os: ubuntu-22.04
# cgo: '0'
isMain:
- ${{ github.ref == 'refs/heads/main' }}
exclude:
- isMain: false
include:
- os: ubuntu-22.04
cgo: '1'
- os: ubuntu-22.04
cgo: '0'
name: test ${{ matrix.os }} cgo=${{ matrix.cgo }}
runs-on: ${{ matrix.os }}

Expand Down
Loading