blob: c0666547335ab8ceddddb2c77925b7dfc2f421bb (
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
35
36
37
38
39
40
41
42
|
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- test
test_debian_10:
stage: test
image: "registry.gitlab.com/gerbolyze/build-containers/debian:10"
script:
- "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH CXX=clang++"
- "python3 setup.py install --user"
- "gerbolyze --help"
- "make -C svg-flatten tests"
test_ubuntu_2004:
stage: test
image: "registry.gitlab.com/gerbolyze/build-containers/ubuntu:20.04"
script:
- "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH CXX=clang++"
- "python3 setup.py install --user"
- "gerbolyze --help"
- "make -C svg-flatten tests"
test_fedora_33:
stage: test
image: "registry.gitlab.com/gerbolyze/build-containers/fedora:33"
script:
- "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH CXX=clang++"
- "python3 setup.py install --user"
- "gerbolyze --help"
- "make -C svg-flatten tests"
test_archlinux:
stage: test
image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest"
script:
- "export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH"
- "python setup.py install --user"
- "gerbolyze --help"
- "make -C svg-flatten tests"
|