Skip to content

Commit

Permalink
Try4
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Nov 10, 2023
1 parent ce0fb0b commit 7c6e0ee
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,16 @@ jobs:
submodules: true
# - name: Install GNU Fortran
# uses: modflowpy/install-gfortran-action@v1
# - name: Install GSL
# run: sudo apt-get -y install libgsl-dev
- name: Install GSL
run: |
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
mkdir build && cd build
cmake ..
make
sudo make install
cd ../..
- name: which gsl
run: which gsl-config
# - name: Install ninja
Expand Down

0 comments on commit 7c6e0ee

Please sign in to comment.