Skip to content

Commit

Permalink
nlwpy: simplify github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fdabrandao committed Feb 26, 2024
1 parent 93202bf commit fdd2209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
21 changes: 1 addition & 20 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@ name: build-and-test
run-name: ${{ github.actor }} is building "${{ github.ref_name }}"
on: [push]

env:
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_MACOS: x86_64 universal2
CIBW_SKIP: pp* cp27-* *_i686 *-win32 *musllinux*
# Fails currently
CIBW_TEST_COMMAND: # python ${{ github.workspace }}/nl-writer2/nlwpy/tests/test.py
CIBW_TEST_REQUIRES: # scipy numpy
# CIBW_TEST_REQUIRES: --index-url https://pypi.ampl.com --extra-index-url https://pypi.org/simple ampl_module_base ampl_module_highs pandas numpy

jobs:
build_native:
name: Build wheels on ${{ matrix.os }}
Expand All @@ -26,12 +17,6 @@ jobs:
uses: pypa/cibuildwheel@v2.16.5
with:
package-dir: nl-writer2/
env:
CIBW_ARCHS_LINUX: ${{ env.CIBW_ARCHS_LINUX }}
CIBW_ARCHS_MACOS: ${{ env.CIBW_ARCHS_MACOS }}
CIBW_SKIP: ${{ env.CIBW_SKIP }}
CIBW_TEST_COMMAND: ${{ env.CIBW_TEST_COMMAND }}
CIBW_TEST_REQUIRES: ${{ env.CIBW_TEST_REQUIRES }}

- uses: actions/upload-artifact@v3
with:
Expand All @@ -43,7 +28,7 @@ jobs:
#needs: build_native
strategy:
matrix:
arch: [aarch64, ppc64le]
arch: [aarch64]
build: [cp37-*, cp38-*, cp39-*, cp310-*, cp311-*, cp312-*]
runs-on: ubuntu-20.04
steps:
Expand All @@ -60,11 +45,7 @@ jobs:
package-dir: nl-writer2/
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_ARCHS_MACOS: ${{ env.CIBW_ARCHS_MACOS }}
CIBW_BUILD: ${{ matrix.build }}
CIBW_SKIP: ${{ env.CIBW_SKIP }}
CIBW_TEST_COMMAND: ${{ env.CIBW_TEST_COMMAND }}
CIBW_TEST_REQUIRES: ${{ env.CIBW_TEST_REQUIRES }}

- uses: actions/upload-artifact@v3
with:
Expand Down
1 change: 1 addition & 0 deletions nl-writer2/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
skip = ["pp*", "cp27-*", "*_i686", "*-win32", "*musllinux*"]
archs = ["auto"]
test-requires = [
"--index-url https://pypi.ampl.com",
"--extra-index-url https://pypi.org/simple",
Expand Down

0 comments on commit fdd2209

Please sign in to comment.