UNCLASSIFIED

Skip to content
Snippets Groups Projects
Commit 3cc05c75 authored by kmc-home's avatar kmc-home
Browse files

add cicd5

parent 5e941d52
Branches
No related merge requests found
Pipeline #119489 passed with stage
in 13 seconds
# variables:
# RUN_HELLO_WORLD:
# description: "Variable to trigger the hello-world pipeline"
# value: ""
# options:
# - ""
# - "true"
# - "false"
include:
- local: pipelines/hello-world.yml
# rules:
# - if: $RUN_HELLO_WORLD == "true"
# default_job: # This job will always run
# stage: .pre # A special stage that always runs first
# script:
# - echo "No conditional jobs triggered."
\ No newline at end of file
# variables:
# RUN_HELLO_WORLD:
# description: "Variable to trigger the hello-world pipeline"
# value: ""
# options:
# - ""
# - "true"
# - "false"
variables:
TEST_VAR:
description: "example variable"
value: ""
options:
- ""
- "true"
- "false"
include:
- local: pipelines/hello-world.yml
rules:
- if: $RUN_HELLO_WORLD == "true"
# Simple .gitlab-ci.yml file (shell executor by default)
stages:
- build
default_job: # This job will always run
stage: .pre # A special stage that always runs first
hello_world:
stage: build
when: manual
script:
- echo "No conditional jobs triggered."
\ No newline at end of file
- echo "Hello, World!"
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment