• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1variables:
2  DEBIAN_TAG: 2019-11-21.0
3  DEBIAN_VERSION: stable
4  TEST_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
5
6include:
7  - project: 'wayland/ci-templates'
8    ref: f69acac60d5dde0410124fd5674764600821b7a6
9    file: '/templates/debian.yml'
10
11stages:
12  - containers-build
13  - test
14
15container_build:
16  extends: .debian@container-ifnot-exists
17  stage: containers-build
18  variables:
19    GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
20    DEBIAN_DEBS: 'build-essential automake autoconf libtool pkg-config libwayland-dev'
21
22test:
23  stage: test
24  image: $TEST_IMAGE
25  script:
26    - ./autogen.sh
27    - make check
28