Skip to content

Commit

Permalink
Merge 2a3b260 into b486c80
Browse files Browse the repository at this point in the history
  • Loading branch information
bodono committed Feb 3, 2023
2 parents b486c80 + 2a3b260 commit 0d8eb94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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
export DYLD_FALLBACK_LIBRARY_PATH=$DYLD_FALLBACK_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 0d8eb94

Please sign in to comment.