Merge pull request #32 from Thaodan/kf6 #23
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
name: Build plasmoid plugin | |
on: [push] | |
jobs: | |
build: | |
name: Linux Latest x64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Installing system libs | |
run: | | |
sudo apt update | |
sudo apt install libkf5plasma-dev extra-cmake-modules qtbase5-dev qtdeclarative5-dev libsigc++-2.0-dev libjsoncpp-dev i3-wm | |
- name: Configure | |
run: cmake -DCMAKE_INSTALL_PREFIX=$(kf5-config --prefix) -DCI_ERRORS=on -B build . | |
- name: Build | |
run: make -j $(nproc) -C build | |
- name: Install | |
run: sudo make -C build install |