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:
parent
8ffacd286c
commit
012b5347a0
3 changed files with 39 additions and 1 deletions
11
.github/workflows/docker-compile-ubuntu.yml
vendored
11
.github/workflows/docker-compile-ubuntu.yml
vendored
|
@ -33,7 +33,16 @@ jobs:
|
||||||
- name: Check output
|
- name: Check output
|
||||||
run: echo branch ${{ steps.vars.outputs.short_ref }}
|
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: |
|
run: |
|
||||||
gsl-config --libs
|
gsl-config --libs
|
||||||
gsl-config --version
|
gsl-config --version
|
||||||
|
|
14
.github/workflows/ubuntu-18.04-compile.yml
vendored
14
.github/workflows/ubuntu-18.04-compile.yml
vendored
|
@ -18,6 +18,20 @@ jobs:
|
||||||
sudo apt update
|
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
|
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
|
- name: Configure & Build
|
||||||
run: |
|
run: |
|
||||||
export CC=$(which clang)
|
export CC=$(which clang)
|
||||||
|
|
15
.github/workflows/ubuntu-compile.yml
vendored
15
.github/workflows/ubuntu-compile.yml
vendored
|
@ -20,6 +20,21 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
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
|
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
|
- name: Configure & Build
|
||||||
run: |
|
run: |
|
||||||
export CC=$(which clang)
|
export CC=$(which clang)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue