Skip to content

Commit

Permalink
chore(ci): update cibw_build and cibw_archs configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
cauliyang committed Oct 24, 2023
1 parent e2dc1a9 commit 06a3044
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
cibw_build: ["cp39-*", "cp310-*", "cp311-*"]
cibw_archs: ["x86_64", "aarch64"]
# cibw_build: ["cp39-*", "cp310-*", "cp311-*"]
cibw_build: ["cp39-*", "cp310-*"]
cibw_archs: ["x86_64"]

steps:
- name: Check out repository
Expand All @@ -86,11 +87,6 @@ jobs:
with:
python-version: "3.11"

# - name: Install Dependencies
# run: |
# sudo apt-get update
# sudo apt-get install -q --no-install-recommends --no-install-suggests libhts-dev libssl-dev

- name: Install poetry
uses: snok/install-poetry@v1
with:
Expand All @@ -103,8 +99,8 @@ jobs:
CIBW_BEFORE_ALL: yum install -y openssl-devel zlib-devel bzip2-devel xz-devel && curl -L https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2 | tar xj && cd htslib-1.18 && ./configure && make && make install
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest {package}/tests
# CIBW_TEST_REQUIRES: pytest
# CIBW_TEST_COMMAND: pytest {package}/tests

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 06a3044

Please sign in to comment.