Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tmori committed Dec 27, 2023
1 parent 1a42f77 commit 581906c
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,26 +32,17 @@ jobs:
if: startsWith(matrix.os, 'macos')
run: brew install googletest

- name: Build hakoniwa-px4sim/drone_physics on ubuntu
- name: Build and Test hakoniwa-px4sim/drone_physics on ubuntu
if: startsWith(matrix.os, 'ubuntu')
run: |
cd drone_physics && cmake -D HAKO_CLIENT_OPTION_FILEPATH=../cmake-options/linux-cmake-options.cmake . && make
cd drone_physics && cmake -D HAKO_CLIENT_OPTION_FILEPATH=../cmake-options/linux-cmake-options.cmake . && make && make run_verbose_test
- name: Build hakoniwa-px4sim/drone_physics on macOs
- name: Build and Test hakoniwa-px4sim/drone_physics on macOs
if: startsWith(matrix.os, 'macos')
run: |
cd drone_physics && cmake . && make
cd drone_physics && cmake . && make && make run_verbose_test

- name: hakoniwa-px4sim/hakoniwa
- name: Build and Test hakoniwa-px4sim/hakoniwa
run: |
cd hakoniwa && bash build.bash
cd hakoniwa && bash build.bash && cd cmake-build && test/hako-px4sim-test
- name: Run Tests/drone_physics
run: |
cd drone_physics && make run_verbose_test
- name: Run Tests/hakoniwa
run: |
cd hakoniwa/cmake-build && test/hako-px4sim-test

0 comments on commit 581906c

Please sign in to comment.