Fix ci builds #58
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build-linux: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-20.04, ubuntu-22.04 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Update dependencies" | |
run: sudo apt-get update | |
- name: "Install dependencies" | |
run: sudo apt-get install -y build-essential cmake pkg-config qtbase5-dev libqt5opengl5-dev libgl1-mesa-dev libglu1-mesa-dev libprotobuf-dev protobuf-compiler libode-dev libboost-dev | |
- name: "Build" | |
run: make | |
build-macos: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macos-11, macos-12, macos-13 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install dependencies" | |
run: brew tap robotology/formulae && brew install cmake pkg-config qt@5 protobuf@21 robotology/formulae/ode | |
- name: "Build" | |
run: make | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make build directory | |
run: mkdir '${{ github.workspace }}/build/' | |
- name: Install dependencies # saves / restores cache to avoid rebuilding dependencies | |
uses: lukka/run-vcpkg@v11 | |
with: | |
setupOnly: false | |
vcpkgGitCommitId: 8eb57355a4ffb410a2e94c07b4dca2dffbee8e50 | |
vcpkgDirectory: c:/vcpkg # folder must reside in c:\ otherwise qt wont install due to long path errors | |
vcpkgTriplet: x64-windows | |
vcpkgArguments: qt5 ode protobuf | |
- name: Run CMake and build | |
working-directory: ${{ github.workspace }}/build/ | |
run: | | |
cmake -DCMAKE_TOOLCHAIN_FILE=c:/vcpkg/scripts/buildsystems/vcpkg.cmake .. | |
cmake --build . --config Release |