summaryrefslogtreecommitdiff
path: root/.gitlab-ci/config.yml
blob: ff214e5467c9dce2a34e5e6148c458a8d2661c0b (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# This file contains the configuration for the gitlab ci.
# See the .gitlab-ci/generate-gitlab-ci.py file for more info
#

# We're happy to rebuild all containers when one changes.
.default_tag: &default_tag '2023-05-08.0'

distributions:
  - name: fedora
    tag: *default_tag
    use_for_tarball_tests: true
    # only one distro for qemu tests
    use_for_qemu_tests: true
    versions:
      - '37'
      - '38'
    packages:
      - git
      - gcc
      - gcc-c++
      - meson
      - automake
      - autoconf
      - libtool
      - make
      - pkgconfig
      - python3
      - check-devel
      - valgrind
      - binutils
      - doxygen
      - xz
      - clang-analyzer
      # below packages are for the qemu runs, so optional
      - systemd-udev
      - qemu-img
      - qemu-system-x86-core
      - qemu-system-aarch64-core
      - jq
      - python3-click
      - python3-rich
  - name: ubuntu
    tag: *default_tag
    versions:
      - '23.04'
      - '22.10'
    packages:
      - git
      - gcc
      - g++
      - meson
      - automake
      - autoconf
      - libtool
      - make
      - pkg-config
      - python3
      - check
      - valgrind
      - binutils
      - doxygen
      - xz-utils
  - name: debian
    tag: *default_tag
    versions:
      - 'stable'
      - 'sid'
    packages:
      - git
      - gcc
      - g++
      - meson
      - automake
      - autoconf
      - libtool
      - make
      - pkg-config
      - python3
      - check
      - valgrind
      - binutils
      - doxygen
      - xz-utils
  - name: arch
    tag: *default_tag
    versions:
      - 'rolling'
    packages:
      - git
      - gcc
      - meson
      - automake
      - autoconf
      - libtool
      - make
      - pkgconfig
      - python3
      - check
      - valgrind
      - binutils
      - doxygen
  - name: alpine
    tag: *default_tag
    versions:
      - 'latest'
    packages:
      - git
      - gcc
      - g++
      - meson
      - automake
      - autoconf
      - libtool
      - make
      - pkgconfig
      - python3
      - check-dev
      - valgrind
      - binutils
      - doxygen
      - xz
      - linux-headers

b2c:
  version: v0.9.9
  kernel: https://gitlab.freedesktop.org/api/v4/projects/libevdev%2Fhid-tools/packages/generic/kernel-x86_64/v6.1/bzImage