blob: 2ec2c6d00661f24bac3a988a3050eb893ebaa6a3 (
plain)
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
|
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
debian_10:
stage: build
image: "registry.gitlab.com/gerbolyze/build-containers/debian:10"
script:
- "python3 setup.py install --user"
- "gerbolyze --help"
ubuntu_2004:
stage: build
image: "registry.gitlab.com/gerbolyze/build-containers/ubuntu:20.04"
script:
- "python3 setup.py install --user"
- "gerbolyze --help"
fedora_33:
stage: build
image: "registry.gitlab.com/gerbolyze/build-containers/fedora:33"
script:
- "python3 setup.py install --user"
- "gerbolyze --help"
archlinux:
stage: build
image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest"
script:
- "python setup.py install --user"
- "gerbolyze --help"
|