summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 69ec08ce6e2ab9f09ee3b3b174eaf9622df09d40 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# vim: set expandtab shiftwidth=2 tabstop=8 textwidth=0:

include:
  - project: 'freedesktop/ci-templates'
    ref: 59de540b620c45739871d1a073d76d5521989d11 # see https://docs.gitlab.com/ee/ci/yaml/#includefile
    file: '/templates/fedora.yml'


variables:
  FDO_UPSTREAM_REPO: xorg/drivers/xf86-input-libinput


stages:
  - containers
  - build


.fedora:
  variables:
    FDO_DISTRIBUTION_VERSION: 33
    FDO_DISTRIBUTION_PACKAGES: 'git autoconf automake libtool make xorg-x11-server-devel libudev-devel libevdev-devel libinput-devel xorg-x11-util-macros'
    FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} bash .gitlab-ci/fedora-install.sh'
    FDO_DISTRIBUTION_TAG: '2021-09-15.0'


fedora@container_build:
  extends:
    - .fedora
    - .fdo.container-build@fedora
  stage: containers
  variables:
    GIT_STRATEGY: none


.default_build:
  stage: build
  script:
    - mkdir _builddir _inst
    - pushd _builddir > /dev/null
    - ../autogen.sh --prefix=$(realpath ../_inst) --disable-silent-rules
    - make && make check
    - make install
    - popd > /dev/null
  artifacts:
    name: "automake-logs-$CI_JOB_NAME"
    when: always
    expire_in: 1 week
    paths:
      - _builddir/config.log


fedora:33@default-build:
  extends:
    - .fedora
    - .fdo.distribution-image@fedora
    - .default_build