-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI compilation on Windows and Mac. (#48)
* Revert "only compile linux" This reverts commit e263eef. * Bump OSX version and add windows compile option.
- Loading branch information
Showing
2 changed files
with
5 additions
and
9 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 |
---|---|---|
|
@@ -10,20 +10,16 @@ jobs: | |
matrix: | ||
config: | ||
- { os: "ubuntu-20.04", arch: "auto64" } | ||
# - { os: "windows-2019", arch: "auto64" } | ||
# - { os: "macos-11", arch: "auto64" } | ||
# - { os: "macos-11", arch: "universal2" } | ||
- { os: "windows-2019", arch: "auto64" } | ||
- { os: "macos-12", arch: "auto64" } | ||
- { os: "macos-12", arch: "universal2" } | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: "true" | ||
- name: Install Dependencies | ||
run: | | ||
python3 -m pip install wheel | ||
- name: Set CXXFLAGS for Windows | ||
if: matrix.config.os == 'windows-2019' | ||
run: | | ||
set CXXFLAGS=/bigobj | ||
- name: Build Wheels | ||
uses: pypa/[email protected] | ||
env: | ||
|
@@ -44,8 +40,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04] | ||
#, windows-2019, macos-11] | ||
os: [ubuntu-20.04, windows-2019, macos-12] | ||
python-version: ['3.6', '3.11'] | ||
|
||
steps: | ||
|
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