Skip to content

Refactor styling for MenuItem (#8) #77

Refactor styling for MenuItem (#8)

Refactor styling for MenuItem (#8) #77

Workflow file for this run

name: ci-linux
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
build-linux:
name: Build On Ubuntu
runs-on: ubuntu-20.04
timeout-minutes: 120
strategy:
matrix:
build_type: [Release]
c_compiler: [gcc]
cpp_compiler: [g++]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Init Submodules
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive
- name: Install linuxdeploy
uses: miurahr/install-linuxdeploy-action@v1
with:
plugins: qt appimage
- name: Install Dependencies
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libfcitx5-qt-dev tree
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1 # not v2!
with:
path: ../Qt
key: ${{ runner.os }}-QtCache-6.5
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 6.5.2
target: desktop
modules: 'qtwebengine qtwebchannel qtpositioning qtpdf qtimageformats qt5compat'
cache: 'true'
- name: Configure CMake
run: >
cmake -B ${{ github.workspace }}/build
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install
-S ${{ github.workspace }}
- name: Build Project
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }} --parallel --target all --
- name: Install Project
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }} --target install --
# when stable to test
# - name: Test
# working-directory: ${{ github.workspace }}/build
# run: ctest --build-config ${{ matrix.build_type }}