-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitlab-ci.yml
74 lines (66 loc) · 1.56 KB
/
.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
stages:
- build
variables:
GIT_SUBMODULE_STRATEGY: normal
.build-common:
stage: build
except:
- schedules
.build-docker:
extends: .build-common
tags:
- docker
- amd64
build-debian:
extends: .build-docker
image: registry.videolan.org/vlc-debian-unstable:20210315112333
script:
- autoreconf -fisv
- mkdir build
- cd build
- ../configure
- make -j $(getconf _NPROCESSORS_ONLN)
build-macos:
extends: .build-common
tags:
- catalina
- amd64
script:
- autoreconf -fisv
- mkdir build
- cd build
- ../configure
- make -j $(getconf _NPROCESSORS_ONLN)
build-win64:
extends: .build-docker
image: registry.videolan.org/vlc-debian-win64:20201106143728
script:
- autoreconf -fisv
- mkdir build
- cd build
- ../configure --host=x86_64-w64-mingw32
- make -j $(getconf _NPROCESSORS_ONLN)
build-win32:
extends: .build-docker
image: registry.videolan.org/vlc-debian-win32:20201106141924
script:
- autoreconf -fisv
- mkdir build
- cd build
- ../configure --host=i686-w64-mingw32
- make -j $(getconf _NPROCESSORS_ONLN)
pages:
extends: .build-docker
image:
name: registry.videolan.org/vlc-debian-unstable:20210315112333
script:
- autoreconf -fisv
- ./configure
- make apidoc
- mv doc/html public
artifacts:
paths:
- public
only:
- schedules
except: