[Software][Cyclope controller] Allowed to power the robot off from th… #70
Workflow file for this run
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: PC application build | |
on: [push] | |
env: | |
QT_VERSION: '5.14.2' | |
jobs: | |
linux: | |
name: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{env.QT_VERSION}} | |
- name: Build | |
run: | | |
qmake Cyclope.pro | |
make | |
working-directory: Software/PC_Application | |
macos: | |
name: macOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{env.QT_VERSION}} | |
- name: Build | |
run: | | |
qmake Cyclope.pro | |
make | |
working-directory: Software/PC_Application | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{env.QT_VERSION}} | |
- name: Build | |
run: | | |
call "%programfiles(x86)%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" | |
qmake Cyclope.pro | |
nmake | |
working-directory: Software/PC_Application | |
shell: cmd |