Fixed a logic error introduced by previous edit. #9350
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
# | |
# Implementation of Continuous Integration process for linux and macOS by Github actions (with extra additionals...) | |
# | |
name: "CI" | |
on: | |
push: | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [master] | |
jobs: | |
# CI on Linux | |
ci-linux: | |
name: "Linux" | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.actor, 'transifex')" | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt remove php7.* -y | |
sudo apt remove php8.* -y | |
sudo apt update | |
# using force-overwrite due to | |
# https://github.com/actions/virtual-environments/issues/2703 | |
#sudo ACCEPT_EULA=Y apt upgrade -o Dpkg::Options::="--force-overwrite" --yes | |
sudo apt install -y qtbase5-private-dev qtscript5-dev libqt5svg5-dev qttools5-dev-tools qttools5-dev libqt5opengl5-dev qtmultimedia5-dev libqt5multimedia5-plugins libqt5serialport5 libqt5serialport5-dev qtpositioning5-dev libgps-dev libqt5positioning5 libqt5positioning5-plugins qtwebengine5-dev libqt5charts5-dev zlib1g-dev libgl1-mesa-dev libdrm-dev cmake | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure CMake | |
shell: bash | |
run: | | |
mkdir -p build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTING=On "${{ github.workspace }}" | |
- name: Compile | |
working-directory: build | |
run: make -j3 | |
- name: Run unit tests | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
working-directory: build | |
run: ctest --output-on-failure | |
# CI on macOS | |
ci-macos: | |
name: "macOS" | |
runs-on: macos-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.actor, 'transifex')" | |
# @TODO Enable gpsd on macOS instance for CI testing | |
# @BODY At the moment after installing gpsd (brew install gpsd) library can be found by cmake, but not headers! Apparently we should add some magic for environment variables or something else on macOS Catalina to make headers available for cmake/make | |
steps: | |
- name: Install dependencies | |
run: brew install qt@5 | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure CMake | |
shell: bash | |
run: | | |
export PATH="/usr/local/opt/qt@5/bin:$PATH" | |
mkdir -p build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTING=On ${{ github.workspace }} | |
- name: Compile | |
working-directory: build | |
run: make -j3 | |
- name: Run unit tests | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
working-directory: build | |
run: ctest --output-on-failure |