Skip to content

Commit

Permalink
Try10
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Nov 10, 2023
1 parent bcc4fe7 commit b5d1af5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b5d1af5

Please sign in to comment.