diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 854bdd0..fff7ba9 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -86,15 +86,15 @@ jobs: CIBW_ARCHS_MACOS: auto universal2 CIBW_SKIP: pp* cp36-* *-musllinux_x86_64 *_i686 CIBW_BEFORE_BUILD: > - apt-get -y install wget - apt-get -y install tar - wget https://mirror.ibcp.fr/pub/gnu/gsl/gsl-2.7.1.tar.gz - tar -zxvf gsl-2.7.1.tar.gz - cd gsl-2.7.1 - ./configure - make - make install - cd .. + apt-get -y install wget && + apt-get -y install tar && + wget https://mirror.ibcp.fr/pub/gnu/gsl/gsl-2.7.1.tar.gz && + tar -zxvf gsl-2.7.1.tar.gz && + cd gsl-2.7.1 && + ./configure && + make && + make install && + cd .. && - name: Verify clean directory run: git diff --exit-code shell: bash