summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 0288197ee34ea5bc3c774bbee07f94dcd519c5bb (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
.artifacts-meson: &artifacts-meson
  when: always
  paths:
   - _build/meson-logs

.meson-build: &meson-build
  - meson _build -D auto_features=enabled
  - ninja -C _build

latest-meson:
  stage: build
  image: archlinux:base-devel
  artifacts: *artifacts-meson
  before_script:
    - pacman -Syu --noconfirm --needed
        meson
        libdrm
        mesa
        gstreamer
        gst-plugins-base
        libpng
  script: *meson-build

oldest-meson:
  stage: build
  image: debian:stable
  artifacts: *artifacts-meson
  before_script:
    - printf > /etc/dpkg/dpkg.cfg.d/99-exclude-cruft "%s\n"
        'path-exclude=/usr/share/doc/*'
        'path-exclude=/usr/share/man/*'
    - printf > /usr/sbin/policy-rc.d "%s\n"
        '#!/bin/sh'
        'exit 101'
    - chmod +x /usr/sbin/policy-rc.d
    - apt-get update
    - apt-get -y --no-install-recommends install
        build-essential
        pkg-config
        libdrm-dev
        libgbm-dev
        libegl1-mesa-dev
        libgles2-mesa-dev
        libgstreamer1.0-dev
        libgstreamer-plugins-base1.0-dev
        gstreamer1.0-plugins-base
        gstreamer1.0-plugins-base-apps
        ninja-build
        python3 python3-pip
        libpng-dev
    - pip3 install wheel setuptools
    - pip3 install meson==0.47
  script: *meson-build