Skip to content

Commit

Permalink
move github runner from macos-12 to macos-14 (#941, #942, #943) (#946)
Browse files Browse the repository at this point in the history
* move github runner from macos-12 to macos-14 (#941)

(cherry picked from commit d024eaf)

* test macos-14 on py310 instead of py39 due to missing psycopg2-binary (#942)

(cherry picked from commit fa4d72c)

* matrix entries need to be an array, even with only one value (#943)

(cherry picked from commit 1943ac5)

---------

Co-authored-by: Colin Rogers <[email protected]>
  • Loading branch information
mikealfare and colin-rogers-dbt authored Nov 8, 2024
1 parent 6f82d52 commit 93cb2ec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,14 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
python-version: ["3.9"]
os: [ubuntu-22.04]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: ubuntu-22.04
# psycopg2-binary doesn't have a precompiled wheel for python 3.9 for macos-14
- os: macos-14
python-version: "3.10"
- os: ubuntu-22.04
python-version: "3.11"
- os: windows-2022
python-version: "3.9"

env:
TOXENV: integration-redshift
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
os: [ubuntu-22.04, macos-14, windows-2022]
python-version: ['3.9', '3.10', '3.11']
exclude:
# psycopg2-binary doesn't have a precompiled wheel for python 3.9 for mac
- os: macos-14
python-version: '3.9'

steps:
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 93cb2ec

Please sign in to comment.