1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2025-01-05 11:00:36 +01:00

Update test-build.yml

This commit is contained in:
Anthony Scemama 2021-10-14 16:17:48 +02:00 committed by GitHub
parent c434f9507c
commit ef25dd3c2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,9 +19,10 @@ jobs:
- name: Install trexio - name: Install trexio
run: | run: |
# TODO: Update the following link when v1.1 will be released # TODO: Update the following link when v1.1 will be released
wget https://github.com/TREX-CoE/trexio/releases/download/v1.1.0/trexio-1.1.0.tar.gz export VERSION=1.1.0
tar -zxf trexio-1.0.0.tar.gz wget https://github.com/TREX-CoE/trexio/releases/download/v${VERSION}/trexio-${VERSION}.tar.gz
cd trexio-1.0.0 tar -zxf trexio-${VERSION}.tar.gz
cd trexio-${VERSION}
./configure --prefix=/usr ./configure --prefix=/usr
make -j 8 make -j 8
sudo make install sudo make install