Newer
Older
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
stages:
- build
ubuntu_deb:
stage: build
image: ubuntu:14.04
only:
- master
- /^release\-.+/
script:
- ./scripts/package ci_ubuntu_deb
- cat transfer.log
fedora_rpm:
stage: build
image: fedora:20
only:
- master
- /^release\-.+/
script:
- ./scripts/package ci_fedora_rpm
- cat transfer.log
opensuse_rpm:
stage: build
image: opensuse:42.1
only:
- master
- /^release\-.+/
script:
- ./scripts/package ci_opensuse_rpm
- cat transfer.log
archlinux_pkg:
stage: build
image: base/archlinux:latest
only:
- master
- /^release\-.+/
script:
- ./scripts/package ci_archlinux_pkg
- cat transfer.log