Skip to content

Commit

Permalink
attempting to fix broken cmake test
Browse files Browse the repository at this point in the history
  • Loading branch information
bodono committed Feb 3, 2023
1 parent b486c80 commit 8b93ecc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
- uses: actions/checkout@v2
- run: |
sudo apt-get install libopenblas-dev liblapack-dev
mkdir build
mkdir out
export INSTALL_DIR=$PWD/out
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$INSTALL_DIR/lib
mkdir build
cd build
mkdir out
cmake -DBUILD_TESTING=ON -DCMAKE_INSTALL_PREFIX:PATH=$INSTALL_DIR ..
make
make install
Expand All @@ -29,11 +29,11 @@ jobs:
- uses: actions/checkout@v2
- run: |
brew install openblas lapack
mkdir build
mkdir out
export INSTALL_DIR=$PWD/out
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$INSTALL_DIR/lib
mkdir build
cd build
mkdir out
cmake -DBUILD_TESTING=ON -DCMAKE_INSTALL_PREFIX:PATH=$INSTALL_DIR ..
make
make install
Expand Down

0 comments on commit 8b93ecc

Please sign in to comment.