Fixed auto reconnection to the RTDE server. (#384) #334
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: Windows build and tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| win-build: | |
| timeout-minutes: 30 | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: configure | |
| run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1 | |
| #run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1 -DINTEGRATION_TESTS=1 | |
| - name: build | |
| run: cmake --build build --config Debug | |
| - name: test | |
| run: cd build && ctest --output-on-failure -C Debug |