Skip to content

Commit

Permalink
Merge pull request siliconcompiler#2374 from siliconcompiler/fix-wheel
Browse files Browse the repository at this point in the history
pin wheel mac build to macos-13
  • Loading branch information
gadfort authored Apr 25, 2024
2 parents e3c373d + e57a9f2 commit fb94664
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
arch: x86_64
- os: ubuntu-latest
arch: aarch64
- os: macos-latest
- os: macos-13
arch: universal
- os: windows-latest
arch: x86_64
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
key: ${{ matrix.platform.os }}-${{ matrix.platform.arch }}-${{ steps.get-surelog.outputs.version }}

- name: Setup Java
if: (matrix.platform.os == 'macos-latest' || matrix.platform.os == 'windows-latest') && steps.surelog-cache.outputs.cache-hit != 'true'
if: (matrix.platform.os == 'macos-13' || matrix.platform.os == 'windows-latest') && steps.surelog-cache.outputs.cache-hit != 'true'
uses: actions/setup-java@v4
with:
distribution: temurin
Expand All @@ -65,7 +65,7 @@ jobs:
architecture: x64

- name: Setup Python
if: (matrix.platform.os == 'macos-latest' || matrix.platform.os == 'windows-latest') && steps.surelog-cache.outputs.cache-hit != 'true'
if: (matrix.platform.os == 'macos-13' || matrix.platform.os == 'windows-latest') && steps.surelog-cache.outputs.cache-hit != 'true'
uses: actions/setup-python@v5
with:
python-version: 3.8
Expand All @@ -80,7 +80,7 @@ jobs:
git config --system core.longpaths true
- name: Build Surelog (macOS)
if: matrix.platform.os == 'macos-latest' && steps.surelog-cache.outputs.cache-hit != 'true'
if: matrix.platform.os == 'macos-13' && steps.surelog-cache.outputs.cache-hit != 'true'
run: .github/workflows/bin/install_surelog_macos.sh

- name: Build Surelog (Linux x86)
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
arch: x86_64
- os: ubuntu-latest
arch: aarch64
- os: macos-latest
- os: macos-13
arch: universal
- os: windows-latest
arch: x86_64
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
.github/workflows/bin/install_klayout_win.bat
- name: Setup env (macOS)
if: matrix.platform.os == 'macos-latest'
if: matrix.platform.os == 'macos-13'
run: |
brew install graphviz
brew install --cask klayout
Expand Down

0 comments on commit fb94664

Please sign in to comment.