forked from audetto/AppleWin
-
Notifications
You must be signed in to change notification settings - Fork 6
36 lines (32 loc) · 850 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: build
on:
push:
pull_request:
workflow_run:
# Use a workflow as a trigger of scheduled builds. Forked repositories can disable scheduled builds by disabling
# "scheduled" workflow, while maintaining ability to perform local CI builds.
workflows:
- scheduled
branches:
- master
- docking
types:
- requested
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get -y install $(cat source/linux/raspbian.list.txt)
- name: Build
run: |
cmake --version
cmake -S . -B build
cmake --build build
cmake -S . -DQAPPLE_USE_QT5=ON -DBUILD_QAPPLE=ON -B build-qt5
cmake --build build-qt5