Skip to content

fix: Unexpected behavior when pressing Control or Shift while draggin… #1

fix: Unexpected behavior when pressing Control or Shift while draggin…

fix: Unexpected behavior when pressing Control or Shift while draggin… #1

Workflow file for this run

# Copyright 2015 - 2024, GIBIS-Unifesp and the WiRedPanda contributors
# SPDX-License-Identifier: GPL-3.0-or-later
name: Coverage
on:
push:
branches:
- 'master'
jobs:
Ubuntu-Qt5_12_12-Code_Coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Install Qt5
uses: jurplel/install-qt-action@v4
with:
version: 5.12.12
cache: true
- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: ubuntu-latest
- name: Build
run: |
sudo apt install libgstreamer-gl1.0-0
mkdir build
cd build
qmake ../WPanda.pro CONFIG+=coverage
make -j2
- name: Test
run: |
cd build/test
./WPanda-test -platform offscreen
- name: Upload coverage data
run: |
cd build/test
gcov -abcfu build_files/obj/*.o
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x ./codecov
./codecov