Skip to content
Snippets Groups Projects
Commit 705b1527 authored by Yana Kernerman's avatar Yana Kernerman Committed by Yana Kernerman
Browse files

trigger pipeline

parent 839116bf
No related branches found
No related tags found
1 merge request!23Tut01 test exercise
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
when: 'always'
- if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_REF_NAME =~/main/
- when: 'never'
# rules:
# - if: $CI_PIPELINE_SOURCE == "merge_request_event"
# when: 'always'
# - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_REF_NAME =~/main/
# - when: 'never'
stages:
- test
......@@ -20,9 +20,9 @@ job_test_the_code:
job_build_artifact:
stage: build
rules: # Conditions under which this job should run
- if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main" # Run this job only for merge request event into main.
when: always
# rules: # Conditions under which this job should run
# - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main" # Run this job only for merge request event into main.
# when: always
image: registry.hub.docker.com/library/golang:1.21
script:
- go get -t ./... # Installs dependencies
......@@ -34,9 +34,9 @@ job_build_artifact:
job_build_and_publish_image:
stage: publish
rules: # Conditions under which this job should run
- if: $CI_PIPELINE_SOURCE == "push" && $CI_MERGE_COMMIT_REF_NAME =~ /main/ # Run this job only for merge request event into main.
when: always
# rules: # Conditions under which this job should run
# - if: $CI_PIPELINE_SOURCE == "push" && $CI_MERGE_COMMIT_REF_NAME =~ /main/ # Run this job only for merge request event into main.
# when: always
image: docker:24.0.0 # Official Docker image with Docker client installed
services:
- docker:24.0.0-dind # used to access the Docker daemon from within the CI job.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment