aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: bd426afebd84c63a2111242e76bba8482dfc2094 (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
stages:
  - build
  - rpms
  - repo

.build_meson: &build_meson
  - mkdir build-meson
  - meson . build-meson
  - ninja-build -C build-meson

build_fedora:
  stage: build
  image: registry.gitlab.com/kraxel/rpm-package-builder:fedora
  before_script:
    - dnf builddep -y *.spec
  script:
    - *build_meson

build_centos8:
  stage: build
  image: registry.gitlab.com/kraxel/rpm-package-builder:centos8
  before_script:
    - dnf builddep -y *.spec
  script:
    - *build_meson

build_centos7:
  stage: build
  image: registry.gitlab.com/kraxel/rpm-package-builder:centos7
  before_script:
    - yum-builddep -y *.spec
  script:
    - *build_meson

include:
  - project: 'kraxel/rpm-package-builder'
    file: 'gitlab-ci-rpms-tito.yml'

boot-aarch64:
  stage: rpms
  rules:
    - if: '$BUILD_AARCH64 == "yes"'
  trigger:
    project: kraxel/ec2-init-scripts
    branch: boot-aarch64