Commit 01459f9b authored by Thien Nguyen's avatar Thien Nguyen
Browse files

Update GitHub Actions CI script

parent 7c81e8f4
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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/