1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

force GSL 2.7.1 version

This commit is contained in:
neodiX 2022-12-29 12:55:22 +01:00
parent 8ffacd286c
commit 012b5347a0
3 changed files with 39 additions and 1 deletions

View file

@ -33,7 +33,16 @@ jobs:
- name: Check output
run: echo branch ${{ steps.vars.outputs.short_ref }}
- name: GSL
- name: Install GSL 2.7.1
run: |
wget https://ftp.gnu.org/gnu/gsl/gsl-2.7.1.tar.gz
tar -xf gsl-2.7.1.tar.gz
cd gsl-2.7.1/
./configure
make
make install
- name: Show GSL version
run: |
gsl-config --libs
gsl-config --version

View file

@ -18,6 +18,20 @@ jobs:
sudo apt update
sudo apt install -y build-essential git make cmake clang libgflags-dev zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev ninja-build
- name: Install GSL 2.7.1
run: |
wget https://ftp.gnu.org/gnu/gsl/gsl-2.7.1.tar.gz
tar -xf gsl-2.7.1.tar.gz
cd gsl-2.7.1/
./configure
make
make install
- name: Show GSL version
run: |
gsl-config --libs
gsl-config --version
- name: Configure & Build
run: |
export CC=$(which clang)

View file

@ -20,6 +20,21 @@ jobs:
run: |
sudo apt update
sudo apt install -y build-essential git make cmake clang libgflags-dev zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev ninja-build
- name: Install GSL 2.7.1
run: |
wget https://ftp.gnu.org/gnu/gsl/gsl-2.7.1.tar.gz
tar -xf gsl-2.7.1.tar.gz
cd gsl-2.7.1/
./configure
make
make install
- name: Show GSL version
run: |
gsl-config --libs
gsl-config --version
- name: Configure & Build
run: |
export CC=$(which clang)