Skip to content

Commit

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

* move github runner from macos-12 to macos-14

(cherry picked from commit d024eaf)

* update test matrix

---------

Co-authored-by: Colin Rogers <111200756+colin-rogers-dbt@users.noreply.github.com>
  • Loading branch information
mikealfare and colin-rogers-dbt authored Nov 8, 2024
1 parent 0bd1cb6 commit 9175fc2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/integration-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = ({ context }) => {

if (labels.includes("test macos") || testAllLabel) {
include.push({
os: "macos-12",
os: "macos-14",
adapter,
"python-version": pythonVersion,
});
Expand Down Expand Up @@ -70,7 +70,7 @@ module.exports = ({ context }) => {
// additionally include runs for all adapters, on macos and windows,
// but only for the default python version
for (const adapter of supportedAdapters) {
for (const operatingSystem of ["windows-latest", "macos-12"]) {
for (const operatingSystem of ["windows-latest", "macos-14"]) {
include.push({
os: operatingSystem,
adapter: adapter,
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-latest, macos-12, windows-latest]
os: [ubuntu-latest, macos-14, windows-latest]
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 9175fc2

Please sign in to comment.