-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fixes and documentation updates (#345)
* Set types on wrap functions * Update IEA-15 inputs * Update installation instructions -- draft * Change to new AF Coords * Fix IEA15 airfoils again * Try latest setup_fortran action * Add UAStart/End location writing * Try intel-classic compiler * Add developer docs about api changes * Try macos-latest in CI * trying to improve conda and pypi builds (#351) * trying to improve conda and pypi builds * adding wheel to cibuild prep * overkill on linux libraries * forgot a step * removing musl aarch64, but don't understand why it fails --------- Co-authored-by: Garrett Barter <[email protected]>
- Loading branch information
Showing
171 changed files
with
22,508 additions
and
18,090 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 |
---|---|---|
|
@@ -16,13 +16,15 @@ jobs: | |
strategy: | ||
fail-fast: false #true | ||
matrix: | ||
os: ["ubuntu-latest", "macOS-13", "windows-latest"] #mac-13 intel, mac-14 arm | ||
os: ["ubuntu-latest", "macOS-latest", "windows-latest"] #mac-13 intel, mac-14 arm | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
|
||
steps: | ||
- name: Setup GNU Fortran | ||
if: false == contains( matrix.os, 'windows') | ||
uses: awvwgk/setup-fortran@v1 #modflowpy/install-intelfortran-action@v1 # | ||
uses: fortran-lang/[email protected] | ||
# with: | ||
# compiler: intel-classic | ||
|
||
- name: Install compiler | ||
if: false == contains( matrix.os, 'windows') | ||
|
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 |
---|---|---|
|
@@ -12,9 +12,15 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | ||
os: [ubuntu-latest, windows-latest, macos-12, macos-13, macos-14] | ||
|
||
steps: | ||
- name: Set up QEMU | ||
if: runner.os == 'Linux' | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
|
||
- name: Setup GNU Fortran | ||
if: false == contains( matrix.os, 'windows') | ||
uses: awvwgk/setup-fortran@v1 | ||
|
@@ -51,16 +57,40 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build wheels mac and linux | ||
if: false == contains( matrix.os, 'windows') | ||
uses: pypa/[email protected] | ||
- name: Build wheels linux | ||
if: contains( matrix.os, 'ubuntu') | ||
uses: pypa/[email protected] | ||
env: | ||
CC: ${{ steps.install_cc.outputs.cc }} | ||
CXX: ${{ steps.install_cc.outputs.cxx }} | ||
|
||
- name: Build wheels mac-12 | ||
if: contains( matrix.os, 'macos-12') | ||
uses: pypa/[email protected] | ||
env: | ||
CC: ${{ steps.install_cc.outputs.cc }} | ||
CXX: ${{ steps.install_cc.outputs.cxx }} | ||
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="12.0" | ||
|
||
- name: Build wheels mac-13 | ||
if: contains( matrix.os, 'macos-13') | ||
uses: pypa/[email protected] | ||
env: | ||
CC: ${{ steps.install_cc.outputs.cc }} | ||
CXX: ${{ steps.install_cc.outputs.cxx }} | ||
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="13.0" | ||
|
||
- name: Build wheels mac-14 | ||
if: contains( matrix.os, 'macos-14') | ||
uses: pypa/[email protected] | ||
env: | ||
CC: ${{ steps.install_cc.outputs.cc }} | ||
CXX: ${{ steps.install_cc.outputs.cxx }} | ||
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="14.0" | ||
|
||
- name: Build wheels windows | ||
if: contains( matrix.os, 'windows') | ||
uses: pypa/cibuildwheel@v2.17.0 | ||
uses: pypa/cibuildwheel@v2.18.1 | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
|
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
Oops, something went wrong.