Qt-Advanced-Docking-System/.github/workflows/linux-builds.yml
githubuser0xFFFF 9f5e06ae13
Update linux-builds.yml
Removed ubuntu-latest because there seems to be build issues for ubuntu-22.04
2022-12-09 15:04:03 +01:00

24 lines
435 B
YAML

name: linux-builds
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-18.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: install qt
run: |
sudo apt-get update --fix-missing
sudo apt-get install qt5-default
sudo apt-get install qtbase5-private-dev
- name: qmake
run: qmake
- name: make
run: make -j4