-
Notifications
You must be signed in to change notification settings - Fork 2
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
7b50d7d
commit 68c05fd
Showing
1 changed file
with
12 additions
and
15 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 |
---|---|---|
|
@@ -28,20 +28,15 @@ jobs: | |
name: Build wheels | ||
needs: | ||
- test | ||
runs-on: ${{ matrix.platform.image }} | ||
runs-on: ${{ matrix.platform }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: | ||
- image: 'windows-latest' | ||
name: 'windows' | ||
- image: 'ubuntu-latest' | ||
name: 'linux' | ||
platform: [ 'windows-latest', 'ubuntu-latest' ] | ||
python-version: [ 'cp38', 'cp39', 'cp310', 'cp311', 'cp312' ] | ||
timeout-minutes: 35 | ||
env: | ||
CONAN_REVISIONS_ENABLED: 1 | ||
TARGET_ID: libcosimpy-${{ github.ref_name }}-${{ matrix.platform.name }}-${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v5 | ||
|
@@ -51,26 +46,32 @@ jobs: | |
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: "${{ matrix.python-version }}-win_amd64 ${{ matrix.python-version }}-manylinux_x86_64" | ||
- name: Twine check | ||
run: | | ||
pip install twine | ||
twine check --strict ./wheelhouse/* | ||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | ||
name: Upload artifact (wheels) | ||
with: | ||
name: ${{ env.TARGET_ID }}-wheel | ||
name: libcosimpy-${{ github.ref_name }}-${{ runner.os }}-${{ matrix.python-version }}-wheel | ||
path: ./wheelhouse/*.whl | ||
|
||
build_source: | ||
name: Build source | ||
needs: | ||
- test | ||
runs-on: 'ubuntu-latest' | ||
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install build | ||
run: pip install build | ||
run: pip install build twine | ||
- name: Build source | ||
run: python -m build --sdist | ||
run: | | ||
python -m build --sdist | ||
twine check --strict ./dist/* | ||
- uses: actions/upload-artifact@v4 | ||
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | ||
name: Upload artifact (source) | ||
with: | ||
name: libcosimpy-${{ github.ref_name }}-source | ||
|
@@ -88,10 +89,6 @@ jobs: | |
pattern: "*-wheel" | ||
merge-multiple: true | ||
path: ./dist/ | ||
- name: Twine check | ||
run: | | ||
pip install twine | ||
twine check --strict ./dist/* | ||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
|