Skip to content

Port to ecm_add_test to actually run the tetsts #666

Port to ecm_add_test to actually run the tetsts

Port to ecm_add_test to actually run the tetsts #666

Workflow file for this run

# SPDX-FileCopyrightText: 2014-2022 Megan Conkle <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
# Build ghostwriter
name: ubuntu-build
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
# Check out the repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v2
- name: Install Qt
run: |
sudo apt-get update
sudo apt-get install g++ qtbase5-dev libqt5svg5-dev qtmultimedia5-dev qtwebengine5-dev libhunspell-dev pkg-config libqt5concurrent5 qttools5-dev-tools
# Runs a single command using the runners shell
- name: Compile
run: |
qmake -qt5
make
- name: Install
run: sudo make install