mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-01 02:48:05 +01:00
30 lines
954 B
YAML
Executable File
30 lines
954 B
YAML
Executable File
---
|
|
name: rssguard
|
|
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
pull_request:
|
|
branches: ["master"]
|
|
|
|
jobs:
|
|
build-rssguard:
|
|
name: "Build RSS Guard on ${{ matrix.os }} with ${{ matrix.qmake_args }}"
|
|
runs-on: "${{ matrix.os }}"
|
|
strategy:
|
|
matrix:
|
|
os: [windows-2019, ubuntu-16.04, macos-10.15]
|
|
qmake_args: ["USE_WEBENGINE=true"]
|
|
include:
|
|
- os: windows-2019
|
|
script_name: .\resources\scripts\github-actions\build-windows.ps1
|
|
- os: ubuntu-16.04
|
|
script_name: ./resources/scripts/github-actions/build-linux-mac.sh
|
|
- os: macos-10.15
|
|
script_name: ./resources/scripts/github-actions/build-linux-mac.sh
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: Prepare environment and compile application
|
|
run: ${{ matrix.script_name }} "${{ matrix.os }}" "${{ matrix.qmake_args }}" |