Skip to content

Commit

Permalink
pin macos test runners to macos-12 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Apr 25, 2024
1 parent a023b6c commit f518f71
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["macos-latest", "ubuntu-latest"]
os: ["macos-12", "ubuntu-latest"]
python-version: ["3.8", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} ${{ matrix.python-version }} Test
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
./.github/scripts/worker_install_linux_deps.sh
- name: Set up Mac
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-12'
run: |
./.github/scripts/worker_install_mac_deps.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_draft_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
fail-fast: false
matrix:
python-version: ${{ fromJSON(needs.build-python-matrix.outputs.python_versions) }}
os: ["macos-latest", "ubuntu-latest"]
os: ["macos-12", "ubuntu-latest"]

name: ${{ matrix.os }} - ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
Expand All @@ -110,7 +110,7 @@ jobs:
echo "os_platform=linux" >> $GITHUB_ENV
- name: "Set Mac OS"
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-12'
run: |
echo "os_platform=mac" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_draft_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
fail-fast: false
matrix:
python-version: ${{ fromJSON(needs.build-python-matrix.outputs.python_versions) }}
os: ["macos-latest", "ubuntu-latest"]
os: ["macos-12", "ubuntu-latest"]
exclude:
- python-version: 3.8
os: ubuntu-latest
Expand All @@ -160,7 +160,7 @@ jobs:
./.github/scripts/worker_install_linux_deps.sh
- name: "Install Mac Dependencies"
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-12'
run: |
echo "os_platform=mac" >> $GITHUB_ENV
./.github/scripts/worker_install_mac_deps.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
if [[ ${{ inputs.os_platform }} == 'mac' ]]
then
echo "platform=macos-latest" >> $GITHUB_OUTPUT
echo "platform=macos-12" >> $GITHUB_OUTPUT
elif [[ ${{ inputs.os_platform }} == 'linux' ]]
then
echo "platform=ubuntu-latest" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit f518f71

Please sign in to comment.