forked from veyon/veyon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
50 lines (46 loc) · 964 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
stages:
- build
- collect
build-linux:
stage: build
image: veyon/ci.linux.$DISTRO:latest
script:
- .ci/linux.$DISTRO/script.sh $CI_PROJECT_DIR /tmp
parallel:
matrix:
- DISTRO:
- centos.7.9
- debian.11
- debian.12
- fedora.39
- fedora.40
- opensuse.15.5
- opensuse.tumbleweed
- ubuntu.20.04
- ubuntu.22.04
- ubuntu.24.04
artifacts:
paths: [ "veyon*" ]
expire_in: 1 day
build-windows:
stage: build
image: $CI_REGISTRY/veyon/ci-mingw-w64:5.0
script:
- .ci/windows/build.sh $ARCH
parallel:
matrix:
- ARCH: [i686, x86_64]
artifacts:
paths: [ veyon-win* ]
expire_in: 1 day
collect-artifacts:
stage: collect
image: veyon/ci.linux.debian.12:latest
dependencies: [ build-linux ]
only: [ tags ]
script:
- ls -la *.deb *.rpm
artifacts:
paths: [ "veyon*" ]
variables:
GIT_SUBMODULE_STRATEGY: recursive