Skip to content

Commit

Permalink
Another try to make build go through
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Jan 11, 2025
1 parent 03397df commit 8a346df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,22 @@ jobs:
docker run --rm pyindi-client
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
name: Build wheels for ${{ matrix.arch }}
runs-on: ubuntu-latest
needs: test
environment: pypi
strategy:
matrix:
os: [ubuntu-latest]
arch: [x86_64, aarch64]
environment: pypi

steps:
- uses: actions/checkout@v3

- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
CIBW_ARCHS_LINUX: "${{ matrix.arch }}"
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
CIBW_SKIP: "*-musllinux_*"
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest
CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux2014_aarch64:latest
Expand Down Expand Up @@ -80,7 +79,8 @@ jobs:
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DINDI_BUILD_SERVER=OFF \
-DINDI_BUILD_DRIVERS=OFF \..
-DINDI_BUILD_DRIVERS=OFF \
..
make -j4
make install
cd ../..
Expand Down

0 comments on commit 8a346df

Please sign in to comment.