ci_template: remove rules from the docker build
[platform/upstream/gstreamer.git] / .gitlab-ci.yml
1 include: "gitlab/ci_template.yml"
2
3 test manifest:
4   variables:
5     GIT_STRATEGY: fetch
6   image: "$TEST_MANIFEST_IMAGE"
7   stage: "preparation"
8   script:
9     - pytest-3 --junitxml=junit.xml --cov=build_manifest gitlab/build_manifest.py
10   coverage: '/TOTAL.*\s+(\d+%)$/'
11   artifacts:
12     reports:
13       junit:
14         - "junit.xml"
15
16 test manifest amd64 docker:
17   stage: "build docker"
18   variables:
19     REPO_SUFFIX: "$TEST_MANIFEST_AMD64_SUFFIX"
20     TAG: "$TEST_MANIFEST_TAG-$GST_UPSTREAM_BRANCH"
21
22     CONTEXT_DIR: "docker/test_manifest/"
23     DOCKERFILE: "docker/test_manifest/Dockerfile"
24   extends: .base