forked from AppleWin/AppleWin
-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (32 loc) · 901 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
37
38
39
name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
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: cmake version
run: cmake --version
- name: Standard build
run: |
cmake -B build
cmake --build build
- name: Qt5 build
run: |
cmake -B build-qt5 -DBUILD_QAPPLE=ON -DQAPPLE_USE_QT5=ON
cmake --build build-qt5
- name: libretro build
run: |
cmake -DBUILD_LIBRETRO=ON -DSTATIC_LINKING=ON -B build-static
cmake --build build-static
ldd build-static/source/frontends/libretro/applewin_libretro.so