Skip to content

Commit

Permalink
build: Update CIBW_BEFORE_ALL command
Browse files Browse the repository at this point in the history
  • Loading branch information
cauliyang committed Oct 24, 2023
1 parent 06a3044 commit 6e9dbb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
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_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_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 || apt-get update && apt-get install -q --no-install-recommends --no-install-suggests libhts-dev libssl-dev)
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_BUILD: ${{ matrix.cibw_build }}
# CIBW_TEST_REQUIRES: pytest
Expand Down

0 comments on commit 6e9dbb4

Please sign in to comment.