mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
stages:
|
|
- build
|
|
- install
|
|
- test
|
|
- lint
|
|
- doc
|
|
- translation
|
|
|
|
default:
|
|
tags:
|
|
- yunohost-ci
|
|
# All jobs are interruptible by default
|
|
interruptible: true
|
|
|
|
code_quality:
|
|
tags:
|
|
- docker
|
|
|
|
code_quality_html:
|
|
extends: code_quality
|
|
variables:
|
|
REPORT_FORMAT: html
|
|
artifacts:
|
|
paths: [gl-code-quality-report.html]
|
|
|
|
# see: https://docs.gitlab.com/ee/ci/yaml/#switch-between-branch-pipelines-and-merge-request-pipelines
|
|
workflow:
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event" # If we move to gitlab one day
|
|
- if: $CI_PIPELINE_SOURCE == "external_pull_request_event" # For github PR
|
|
- if: $CI_COMMIT_TAG # For tags
|
|
- if: $CI_COMMIT_REF_NAME == "ci-format-$CI_DEFAULT_BRANCH" # Ignore black formatting branch created by the CI
|
|
when: never
|
|
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push" # If it's not the default branch and if it's a push, then do not trigger a build
|
|
when: never
|
|
- when: always
|
|
|
|
variables:
|
|
YNH_BUILD_DIR: "ynh-build"
|
|
|
|
include:
|
|
- template: Code-Quality.gitlab-ci.yml
|
|
- local: .gitlab/ci/*.gitlab-ci.yml
|