Skip to content

[Software][Cyclope controller] Allowed to power the robot off from th… #70

[Software][Cyclope controller] Allowed to power the robot off from th…

[Software][Cyclope controller] Allowed to power the robot off from th… #70

Workflow file for this run

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