mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
33 lines
843 B
YAML
33 lines
843 B
YAML
default:
|
|
image: docker-hub.repo.splunkdev.net/python:3.9
|
|
|
|
variables:
|
|
EXTRACTO_VERSION:
|
|
value: "1.0.60"
|
|
description: "The version of extracto to use"
|
|
SKIP_DOWNSTREAM_TESTING:
|
|
value: "False"
|
|
description: "If true, downstream testing will be suppressed (useful for debugging or forcing a release in an emergency)."
|
|
|
|
stages:
|
|
- validate
|
|
- generate
|
|
- test
|
|
- app_inspect
|
|
- release
|
|
|
|
include:
|
|
- local: "pipeline/.validate.yml"
|
|
- local: "pipeline/.generate.yml"
|
|
- local: "pipeline/.test.yml"
|
|
- local: "pipeline/.app_inspect.yml"
|
|
- local: "pipeline/.release.yml"
|
|
- local: "pipeline/.post.yml"
|
|
|
|
workflow:
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
- if: $CI_COMMIT_TAG
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
- if: $CI_COMMIT_BRANCH =~ /^release_v[0-9]+\.[0-9]+\.[0-9]+$/
|