From 01459f9b4532048934b9c2bcdd78d504bdbe1432 Mon Sep 17 00:00:00 2001 From: Thien Nguyen <thien.md.nguyen@gmail.com> Date: Sat, 26 Feb 2022 10:08:04 +1100 Subject: [PATCH] Update GitHub Actions CI script --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8421e1f..75ad5bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,12 +21,10 @@ jobs: run: sudo apt-get -y update && sudo apt-get install -y --no-install-recommends gfortran libopenmpi-dev ninja-build libssl-dev python3 libpython3-dev python3-pip libblas-dev liblapack-dev - name: Build XACC - working-directory: $HOME - run: git clone --recursive https://github.com/eclipse/xacc && cd xacc && mkdir build && cd build && cmake .. -GNinja && cmake --build . --target install + run: cd $HOME && git clone --recursive https://github.com/eclipse/xacc && cd xacc && mkdir build && cd build && cmake .. -GNinja && cmake --build . --target install - name: Build ExaTN - working-directory: $HOME - run: git clone --recursive https://github.com/ornl-qci/exatn && cd exatn && mkdir build && cd build && cmake .. -DBLAS_LIB=ATLAS -DBLAS_PATH=/usr/lib/x86_64-linux-gnu && make -j$(nproc) install + run: cd $HOME && git clone --recursive https://github.com/ornl-qci/exatn && cd exatn && mkdir build && cd build && cmake .. -DBLAS_LIB=ATLAS -DBLAS_PATH=/usr/lib/x86_64-linux-gnu && make -j$(nproc) install - name: Configure working-directory: build/ -- GitLab