1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-07-19 01:13:50 +02:00

Merge branch 'trexio' of github.com:TREX-CoE/qmckl into trexio

This commit is contained in:
Anthony Scemama 2021-10-14 16:33:06 +02:00
commit 8fb59bce14

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/untagged-c1e46a50d86b835555c8/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