Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove macos-12 runner as it is fully unsupported as of 2024-12-03 #407

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
matrix:
os:
- ubuntu-24.04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md
- macos-12 # https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
- macos-13 # https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
- macos-14 # https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
- windows-2019 # https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md
python-version:
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:

# avoid unnecessary use of mac resources
- is-full-run: false
os: macos-12
os: macos-13

- is-full-run: false
os: macos-14
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
CIBW_ENVIRONMENT_MACOS: CCACHE_DIR="/Users/runner/work/csp/csp/.ccache" VCPKG_DEFAULT_BINARY_CACHE="${{ env.VCPKG_DEFAULT_BINARY_CACHE }}" VCPKG_DOWNLOADS="${{ env.VCPKG_DOWNLOADS }}"
CIBW_ARCHS_MACOS: x86_64
CIBW_BUILD_VERBOSITY: 3
if: ${{ matrix.os == 'macos-12' }}
if: ${{ matrix.os == 'macos-13' }}

- name: Python Build Steps (Macos arm)
run: make dist-py-cibw
Expand Down Expand Up @@ -439,7 +439,7 @@ jobs:
matrix:
os:
- ubuntu-24.04
- macos-12
- macos-13
- macos-14
- windows-2019
python-version:
Expand Down Expand Up @@ -479,7 +479,7 @@ jobs:

# avoid unnecessary use of mac resources
- is-full-run: false
os: macos-12
os: macos-13

- is-full-run: false
os: macos-14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
os:
- ubuntu-24.04
- macos-14
- macos-12
- macos-13
- windows-2019
runs-on: ${{ matrix.os }}
steps:
Expand Down
Loading