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
f46a3b8
commit 157a747
Showing
1 changed file
with
1 addition
and
14 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 |
---|---|---|
|
@@ -17,10 +17,6 @@ jobs: | |
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 | ||
|
@@ -35,21 +31,12 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-13, windows-latest] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
if: matrix.os == 'macos-13' | ||
with: | ||
xcode-version: 'latest' | ||
- name: Update GCC | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y g++-11 | ||
- uses: pypa/[email protected] | ||
env: | ||
CIBW_ARCHS_MACOS: auto universal2 | ||
|