forked from veyon/veyon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
51 lines (47 loc) · 1007 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
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.buster
- debian.bullseye
- debian.bookworm
- fedora.37
- fedora.38
- opensuse.15.4
- opensuse.15.5
- opensuse.tumbleweed
- ubuntu.focal
- ubuntu.jammy
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.bookworm:latest
dependencies: [ build-linux ]
only: [ tags ]
script:
- ls -la *.deb *.rpm
artifacts:
paths: [ "veyon*" ]
variables:
GIT_SUBMODULE_STRATEGY: recursive