Skip to content

Revive CI #162

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 26, 2025
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