forked from hrydgard/ppsspp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
53 lines (44 loc) · 999 Bytes
/
.gitlab-ci.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# libretro CI
variables:
GIT_SUBMODULE_STRATEGY: normal
.core-defs:
variables:
CORENAME: ppsspp
CORE_ARGS: -DLIBRETRO=ON
.linux-defs:
variables:
EXTRA_PATH: lib
include:
- template: Jobs/Code-Quality.gitlab-ci.yml
- project: 'libretro-infrastructure/ci-templates'
file: '/android-cmake.yml'
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-cmake.yml'
stages:
- build-prepare
- build-shared
- build-static
- test
#Desktop
libretro-build-linux-x86_64:
extends:
- .libretro-linux-cmake-x86_64
- .core-defs
- .linux-defs
# Android
libretro-build-android-armeabi-v7a:
extends:
- .libretro-android-cmake-armeabi-v7a
- .core-defs
libretro-build-android-arm64-v8a:
extends:
- .libretro-android-cmake-arm64-v8a
- .core-defs
libretro-build-android-x86_64:
extends:
- .libretro-android-cmake-x86_64
- .core-defs
libretro-build-android-x86:
extends:
- .libretro-android-cmake-x86
- .core-defs