Skip to content

Bump version to 0.1.4 #142

Bump version to 0.1.4

Bump version to 0.1.4 #142

Workflow file for this run

name: Automatic build
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
release:
types: [ created ]
env:
BUILD_TYPE: Release
jobs:
Linux_Qt5:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install base dependencies
run: |
sudo apt update
sudo apt install cmake make pkg-config libx11-dev xcb libx11-xcb-dev libxkbcommon-dev libwayland-bin libwayland-dev wayland-protocols
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 5.15.2
- name: Build
run: |
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make -j4
Linux_Qt6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install base dependencies
run: |
sudo apt update
sudo apt install cmake make pkg-config libx11-dev xcb libx11-xcb-dev libxkbcommon-dev libwayland-bin libwayland-dev wayland-protocols
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 6.5.0
- name: Build
run: |
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DUSE_QT6=ON
make -j4