This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85e3957
commit 973d06b
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|
@@ -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 | ||
|