Skip to content

Commit

Permalink
ci(macos): Remove unsupported macos 10.15 runner
Browse files Browse the repository at this point in the history
Use macos-11 runner instead.
  • Loading branch information
riddell-stan committed May 26, 2023
1 parent 4c65466 commit d675c3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
os: [ubuntu-20.04, macos-10.15]
os: [ubuntu-20.04, macos-11]
platform: [x64]
env:
REPO_DIR: httpstan
Expand Down Expand Up @@ -53,9 +53,9 @@ jobs:
pip install virtualenv
- name: Set multibuild environment variables
run: |
if [ "macos-10.15" == "${{ matrix.os }}" ]; then echo "PLAT=x86_64" >> $GITHUB_ENV; fi
if [ "macos-10.15" == "${{ matrix.os }}" ]; then echo "ARCHFLAGS=-arch x86_64" >> $GITHUB_ENV; fi
if [ "macos-10.15" == "${{ matrix.os }}" ]; then echo "MB_PYTHON_OSX_VER=10.9" >> $GITHUB_ENV; fi
if [ "macos-11" == "${{ matrix.os }}" ]; then echo "PLAT=x86_64" >> $GITHUB_ENV; fi
if [ "macos-11" == "${{ matrix.os }}" ]; then echo "ARCHFLAGS=-arch x86_64" >> $GITHUB_ENV; fi
if [ "macos-11" == "${{ matrix.os }}" ]; then echo "MB_PYTHON_OSX_VER=10.9" >> $GITHUB_ENV; fi
- name: Use most recent tag as BUILD_COMMIT
run: echo "BUILD_COMMIT=$(cd httpstan && git tag --sort version:refname | tail -1)" >> $GITHUB_ENV
- name: Print environment variables
Expand Down

0 comments on commit d675c3e

Please sign in to comment.