[DQ_SerialWholeBody.cpp] This PR fixes bug 61, which is related to the pose jacobian method #85
Workflow file for this run
This file contains 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: CPP Build MacOS | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
testbranches: ['release','master'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install prerequisites | |
run: sh .github/scripts/macos/install_prerequisites.sh | |
- name: Build | |
run: sh .github/scripts/macos/build.sh | |
- name: Install | |
run: sh .github/scripts/macos/install.sh | |
- name: Download examples ((${{ matrix.testbranches }})) | |
run: git clone -b ${{ matrix.testbranches }} https://github.com/dqrobotics/cpp-examples.git | |
- name: Build pure examples | |
run: | | |
cd cpp-examples | |
chmod +x .build_pure.sh | |
./.build_pure.sh | |