QtPBFImagePlugin/.github/workflows/linux.yml

23 lines
500 B
YAML
Raw Normal View History

2022-01-04 08:34:24 +01:00
name: Linux
on:
push:
branches:
- master
jobs:
build:
name: QtPBFImagePlugin
runs-on: ubuntu-20.04
steps:
- name: Checkout
2024-02-03 18:35:23 +01:00
uses: actions/checkout@v4
2022-01-04 08:34:24 +01:00
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install qtbase5-dev qtbase5-dev-tools qt5-qmake libprotobuf-dev protobuf-compiler zlib1g-dev
- name: Configure build
2022-01-04 08:36:18 +01:00
run: qmake pbfplugin.pro
2022-01-04 08:34:24 +01:00
- name: Build project
run: make -j2