Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,26 @@
name: Build (Linux, Ubuntu)

on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
workflow_dispatch:

# Reduce permissions to minimum for security
permissions:
contents: read

jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-24.04
qt: qt5-qmake
- runs-on: ubuntu-22.04
qt: qt5-qmake
- runs-on: ubuntu-18.04
qt: qt5-default

name: Build (Linux, ${{ matrix.runs-on }})
runs-on: ${{ matrix.runs-on }}
Expand All @@ -43,7 +50,8 @@ jobs:
libapr1-dev \
libsvn-dev \
${{ matrix.qt }} \
qtbase5-dev
qtbase5-dev \
subversion

- name: 'Checkout Git branch'
uses: actions/checkout@v3
Expand Down