Skip to content

Commit

Permalink
Update Ci jobs for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Nov 5, 2024
1 parent 2696777 commit fa01ced
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ on:
- 'doc/**'

jobs:
xcode-macos-14:
xcode-macos-15:
strategy:
fail-fast: false
matrix:
xcode: ['15']
xcode: ['16']
build_type: [Debug, Release]

runs-on: macos-14
runs-on: macos-15

env:
TAOPQ_TEST_DATABASE: host=localhost dbname=postgres user=postgres password=postgres

steps:
- uses: actions/checkout@v4
- uses: ikalnytskyi/action-setup-postgres@v6
- uses: ikalnytskyi/action-setup-postgres@v7

- run: cmake -E make_directory build

Expand All @@ -38,21 +38,21 @@ jobs:
- working-directory: build/
run: ctest --output-on-failure

xcode-macos-13:
xcode-macos-14:
strategy:
fail-fast: false
matrix:
xcode: ['13', '14', '15']
xcode: ['15']
build_type: [Debug, Release]

runs-on: macos-13
runs-on: macos-14

env:
TAOPQ_TEST_DATABASE: host=localhost dbname=postgres user=postgres password=postgres

steps:
- uses: actions/checkout@v4
- uses: ikalnytskyi/action-setup-postgres@v6
- uses: ikalnytskyi/action-setup-postgres@v7

- run: cmake -E make_directory build

Expand All @@ -65,21 +65,21 @@ jobs:
- working-directory: build/
run: ctest --output-on-failure

xcode-macos-12:
xcode-macos-13:
strategy:
fail-fast: false
matrix:
xcode: ['11', '12']
xcode: ['13', '14', '15']
build_type: [Debug, Release]

runs-on: macos-12
runs-on: macos-13

env:
TAOPQ_TEST_DATABASE: host=localhost dbname=postgres user=postgres password=postgres

steps:
- uses: actions/checkout@v4
- uses: ikalnytskyi/action-setup-postgres@v6
- uses: ikalnytskyi/action-setup-postgres@v7

- run: cmake -E make_directory build

Expand Down

0 comments on commit fa01ced

Please sign in to comment.