Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
Update dist.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski authored Nov 14, 2023
1 parent 85e3957 commit 973d06b
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ on:
jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Update GCC
run: |
sudo apt-get update
sudo apt-get install -y g++-11
- name: Build SDist
run: pipx run build --sdist
- name: Check metadata
Expand All @@ -31,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
os: [ubuntu-22.04, macos-13, windows-latest]
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -40,7 +44,12 @@ jobs:
- uses: maxim-lobanov/setup-xcode@v1
if: matrix.os == 'macos-13'
with:
xcode-version: '14.3'
xcode-version: 'latest'
- name: Update GCC
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y g++-11
- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: auto universal2
Expand Down

0 comments on commit 973d06b

Please sign in to comment.