forked from ZoneMinder/zoneminder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
33 lines (31 loc) · 818 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
default:
image:
name: ubuntu:latest
before_script:
- apt-get update -yq
- DEBIAN_FRONTEND=noninteractive apt-get install -yq devscripts sudo
ubuntu_deb:
stage: build
tags:
- docker
script:
- DEBIAN_FRONTEND=noninteractive TZ=America/Chicago apt-get -y install tzdata
- yes "" | ./utils/do_debian_package.sh --snapshot=stable --type=binary --interactive=no --dput=no --debbuild-extra=--no-sign || true
timeout: 3h
artifacts:
paths:
- '*.deb'
expire_in: 1 week
debian_deb:
stage: build
tags:
- docker
image:
name: debian:latest
script:
- yes "" | ./utils/do_debian_package.sh --snapshot=stable --type=binary --interactive=no --dput=no --debbuild-extra=--no-sign || true
timeout: 3h
artifacts:
paths:
- '*.deb'
expire_in: 1 week