Skip to content

Commit

Permalink
Fix relative path to OpenFAST prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
MakisH committed May 14, 2024
1 parent 862e31b commit 5e5b52f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,19 @@ jobs:
- name: Build OpenFAST
run: |
git clone https://github.com/OpenFAST/OpenFAST.git
pwd && ls
cd OpenFAST
git switch --detach v3.5.3
mkdir build
cd build
cmake -DBUILD_OPENFAST_CPP_API=ON ..
# make -j $(nproc)
# make install
make -j $(nproc)
make install
- name: Build OpenFAST adapter
run: |
cd src
pwd && ls
mkdir build
cd build
OpenFAST_DIR=../OpenFAST/install/lib/cmake/OpenFAST cmake ..
OpenFAST_DIR=../../OpenFAST/install/lib/cmake/OpenFAST cmake ..
make -j $(nproc)
- name: Build dummy-turbine fluid case
run: |
Expand Down

0 comments on commit 5e5b52f

Please sign in to comment.