Skip to content

Commit

Permalink
#38 : update experimental CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Oct 23, 2023
1 parent 0cba56e commit 9ca4344
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/experimental_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
name: Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Optional, use if you use setuptools_scm
submodules: recursive # Optional, use if you have submodules

- name: Build SDist
run: pipx run build --sdist

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
name: sdist
Expand All @@ -36,17 +36,17 @@ jobs:
python_version: ['cp37-*', 'cp38-*', 'cp39-*', 'cp310-*', 'cp311-*', 'cp312-*']

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: pypa/cibuildwheel@v2.11.2
- uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.python_version }}
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ENVIRONMENT: LIBSBML_EXPERIMENTAL=1

- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,5 @@ $RECYCLE.BIN/
/install*
/spam/__pycache__
/*.bak
*.bak
/test/

0 comments on commit 9ca4344

Please sign in to comment.