-
Notifications
You must be signed in to change notification settings - Fork 46
/
.gitlab-ci.yml
90 lines (83 loc) · 2.48 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
# -*- 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
include:
- local: 'ci/container_builds.yml'
# Stages in the CI pipeline in which jobs will be run
stages:
- container-build
- build
- lint
- pages
# 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'
# 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
# Ruff linter for Python.
#
# The configuration is in pyproject.toml.
ruff lint:
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
allow_failure: true
# 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"'