Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Dec 10, 2024
1 parent 4a5bc2c commit 2b74187
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Build lumberjack application and plugins

name: Build

on:
push:
branches:
- master
pull_request:
branches:
- master
release:
types:
- created

jobs:
linux:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.8.1'
cache: true
- name: Build Qwt
run: |
cd qwt
qmake qwt.pro
make
sudo make install
- name: Build Lumberjack
run: |
qmake lumberjack.pro
make
- name: Build Plugins
run: |
cd plugins
qmake plugins.pro
make

0 comments on commit 2b74187

Please sign in to comment.