Skip to content

Commit

Permalink
Fix github action (BehaviorTree#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarcasticnature authored Oct 13, 2021
1 parent bd14adc commit d7ce6f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: apt
run: sudo apt-get update && sudo apt-get install -yq libzmq3-dev libdw-dev libgtest-dev cmake
- name: Install gtest manually
run: cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp *.a /usr/lib
run: cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp lib/*.a /usr/lib
# build project
- name: mkdir
run: mkdir build
Expand All @@ -23,5 +23,5 @@ jobs:
run: cmake --build build/ --target all
# run tests
- name: run test
run: build/test/behaviortree_cpp_v3_test
run: build/bin/behaviortree_cpp_v3_test

0 comments on commit d7ce6f5

Please sign in to comment.