GIT_SILENT Sync po/docbooks with svn #655
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
# 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 |