Merge pull request #302 from RosLibRust/fix-error-log-on-probe-connec… #520
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Noetic gencpp | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| HOME: /root | |
| # Coupled with our use of the test_log crate this should give us good CI output on failure | |
| RUST_LOG: debug | |
| jobs: | |
| noetic_gencpp: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| container: carter12s/roslibrust-ci-noetic-cpp:latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'true' | |
| - name: Compile test package | |
| run: cd roslibrust_genmsg/test_package; mkdir -p cmake_build; cd cmake_build; cmake .. -DCMAKE_BUILD_TYPE=Release; make -j6; |