From d17b0f88d1eb74f3b4bc164a896b9de0834abf93 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 12 Oct 2021 00:15:38 +0200 Subject: [PATCH] Install trexio in GH actions --- .github/workflows/test-build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 2032472..c34b575 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -16,6 +16,14 @@ jobs: - uses: actions/checkout@v2 - name: install dependencies run: sudo apt-get install emacs autoconf + - name: install trexio + run: | + wget https://github.com/TREX-CoE/trexio/releases/download/v1.0/trexio-1.0.0.tar.gz + tar -zxf trexio-1.0.0.tar.gz + cd trexio-1.0.0 + ./configure + make -j 8 + sudo make install - name: Run test run: | ./autogen.sh @@ -41,6 +49,14 @@ jobs: # brew install gfortran-10 # brew install emacs # brew install autoconf automake libtool +# - name: install trexio +# run: | +# wget https://github.com/TREX-CoE/trexio/releases/download/v1.0/trexio-1.0.0.tar.gz +# tar -zxf trexio-1.0.0.tar.gz +# cd trexio-1.0.0 +# ./configure +# make -j 8 +# sudo make install # - name: Run test # run: | # ./autogen.sh