-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy path.gitlab-ci.yml
124 lines (115 loc) · 3.42 KB
/
.gitlab-ci.yml
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
# -*- indent-tabs-mode: nil -*-
#
# Continuous Integration configuration for at-spi2-core
#
# Full documentation for Gitlab CI: https://docs.gitlab.com/ee/ci/
#
# Introduction to Gitlab CI: https://docs.gitlab.com/ee/ci/quick_start/index.html
# Include the parameters we need from Freedesktop CI Templates,
# plus the GNOME release-service.
include:
- local: 'ci/container_builds.yml'
- component: gitlab.gnome.org/GNOME/citemplates/release-service@master
inputs:
job-stage: release
dist-job-name: "build-release-tarball"
tarball-artifact-path: "${TARBALL_ARTIFACT_PATH}"
# Stages in the CI pipeline in which jobs will be run
stages:
- container-build
- build
- lint
- pages
- release
# Enable merge request pipelines and avoid duplicate pipelines
# https://docs.gitlab.com/ee/ci/yaml/index.html#switch-between-branch-pipelines-and-merge-request-pipelines
workflow:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push"
when: never
- if: '$CI_COMMIT_TAG'
- if: '$CI_COMMIT_BRANCH'
variables:
MESON_BUILD_DIR: _build
TARBALL_ARTIFACT_PATH: "${MESON_BUILD_DIR}/meson-dist/${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.tar.xz"
# Main build job; installs at-spi2-core and builds/installs Orca.
#
# The build is done in a _build directory; see build_and_install.sh.
#
# At the end, prepares the Mallard docs with translations in _build and makes them
# ready for rendering into HTML. The rendering is done in the "pages" job below.
build-opensuse-x86_64:
stage: build
extends:
- '.orca_opensuse_tumbleweed_x86_64'
- '.fdo.distribution-image@opensuse'
needs:
- job: opensuse-container@x86_64
artifacts: false
script:
- bash -x ci/install_atspi.sh
- bash -x ci/build_and_install.sh
- bash -x ci/prepare_translated_docs.sh
artifacts:
paths:
- _build/help
expire_in: 1 day
# Linters: Ruff and Mypy
#
# The configurations are in pyproject.toml.
linters:
stage: lint
extends:
- '.orca_opensuse_tumbleweed_x86_64'
- '.fdo.distribution-image@opensuse'
needs:
- job: opensuse-container@x86_64
artifacts: false
script:
- source ci/env.sh
- ruff check src/orca
- mypy src/orca
allow_failure: true
# Build a tarball for the release if we have a tag.
build-release-tarball:
stage: release
extends:
- '.orca_opensuse_tumbleweed_x86_64'
- '.fdo.distribution-image@opensuse'
needs:
- job: opensuse-container@x86_64
artifacts: false
rules:
- if: '$CI_COMMIT_TAG'
when: always
- when: never
script:
- meson setup "${MESON_BUILD_DIR}"
- meson dist -C "${MESON_BUILD_DIR}"
artifacts:
name: "${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
when: always
paths:
- "${TARBALL_ARTIFACT_PATH}"
# Renders the documentation from Mallard into HTML, and publishes to GitLab pages.
#
# Assumes that a previous job put the translated docs in _build/help/{language_name}
# for all available languages.
pages:
stage: pages
extends:
- '.orca_opensuse_tumbleweed_x86_64'
- '.fdo.distribution-image@opensuse'
needs:
- job: opensuse-container@x86_64
artifacts: false
- job: build-opensuse-x86_64 # this one puts the translated docs in _build/help
script:
- bash -x ci/render_mallard_docs.sh
artifacts:
paths:
- public
expire_in: 1 day
rules:
- if: '$CI_COMMIT_BRANCH == "main"'