Patch 0.2.4 #12
Workflow file for this run
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: linux | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
# | |
# Ubuntu | |
# | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
sudo apt update && sudo apt install -y qt6-tools-dev qt6-base-dev libqt6charts6-dev libqt6widgets6 libqt6gui6 libqt6opengl6-dev libgl1-mesa-dev build-essential cmake | |
- name: Configure CMake | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
- name: Build | |
run: | | |
cd build | |
make -j | |
# | |
# Ubuntu 12-Qt5 | |
# | |
build-ubuntu-qt5: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
sudo apt update && sudo apt install -y qtbase5-dev libqt5charts5-dev libgl1-mesa-dev build-essential cmake | |
- name: Apply patch | |
run: patch -p1 CMakeLists.txt < qt5.patch | |
- name: Configure CMake | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
- name: Build | |
run: | | |
cd build | |
make -j | |
# | |
# Debian 12 | |
# | |
build-debian12: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
apt update && apt install -y qt6-tools-dev qt6-base-dev libqt6charts6-dev libqt6widgets6 libqt6gui6 libqt6opengl6-dev libgl1-mesa-dev build-essential cmake | |
- name: Configure CMake | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
- name: Build | |
run: | | |
cd build | |
make -j |