添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
飘逸的香蕉  ·  使用gitlab CI ...·  1 周前    · 
英俊的蚂蚁  ·  gitlab-ci ...·  1 周前    · 
不拘小节的牛腩  ·  Use kaniko to build ...·  2 周前    · 
玩手机的硬盘  ·  CI v4.3.1 ...·  2 周前    · 
帅呆的苦咖啡  ·  Navicat for ...·  3 周前    · 
飘逸的汽水  ·  CITY ...·  5 月前    · 

Have somebody a simple example how to make if conditions in the CI file for GitLab Runner?

If(CI_type == merge_request)
- echo „ Test“

I’m afraid, this is not possible in the relatively static YAML configuration language. I would write a small bash script which reads the environment variables CI_MERGE_REQUEST_ID and does the printing then. Whenever the ID is filled with content, this is a merge request.

vim run.sh
#!/bin/bash
if [ "$CI_MERGE_REQUEST_ID" != "" ]; then
  echo "Test"

Before adding that to your CI config, you can test it locally.

CI_MERGE_REQUEST_ID=42 bash run.sh

Add the script into the main directory, or yet better, in a dedicated sub directory.

mkdir -p .gitlab/ci
vim .gitlab/ci/run.sh
chmod +x .gitlab/ci/run.sh
git add .gitlab/ci/run.sh
git commit -v

Then add it to your CI job config.

vim .gitlab-ci.yml
myjob:
  script:
  - ./.gitlab/ci/run.sh

Cheers,
Michael

Can you not use rules for this in gitlab-ci.yml or have I misunderstood the question?

myjob:
    rules:
        - if: $CI_MERGE_REQUEST_ID
          when: always
        - when: never
    script:
        - echo "Test"

or, if there’s some reason why you need this in a longer if statement:

myjob:
    rules:
        - when: always
    script:
            if [[ $CI_MERGE_REQUEST_ID != "" ]]; then
                echo "Test"

true that, I have not fully adopted rules into my mindset yet.

One thing for rules though: The condition matches the entire job scope, you cannot split 2 statements with different conditions (to my knowledge).

Since I am also overwhelmed by code in YAML config, I usually refactor more complex logic into helper scripts. Exceptions are for workshops to show the thinking steps in verbose mode.

Cheers,
Michael

I’m not sure what you mean by “you cannot split 2 statements with different conditions”? You can do things like:

    rules:
        - if: '$CI_COMMIT_BRANCH =~ /^release\/[a-z0-9-\.]+$/'
          when: always
        - if: $CI_COMMIT_TAG
          when: never
        - when: never
    rules:
        - if: '$CI_COMMIT_BRANCH =~ /^release\/[a-z0-9-\.]+$/' && $CI_COMMIT_TAG != ""
          when: always
        - when: never

but if you want part of the script to run on different conditions, you’d need a multiline Bash statement with:

script: 
            if [[ $CI_MERGE_REQUEST_ID != "" ]]; then
                echo "Test"
                echo "No test"

or maybe you meant something else?

Cheers,

Sarah

snim2:

but if you want part of the script to run on different conditions, you’d need a multiline Bash statement with:

Thanks, exactly this. The more logic you’ll need with conditions, the better a script will be.

My preferred way is to move this into a bash script file, as this can get complicated with YAML indents. Also, the bash script can be tested offline, while the YAML cannot be so easily. :slight_smile:

Cheers,
Michael

Hi @snim2 ,

I am trying to run the .sh file from the yml file, but After running the pipeline it says

$ chmod +x .scripts/samplescript.sh
*chmod: .scripts/samplescript.sh: No such file or directory*
Cleaning up file based variables
image: alpine
stages:
  - build
build the car:
  stage: build
  script:
    - mkdir build
    - whoami
    - cd build
    - touch car.txt
    - echo "chaisi" >> car.txt
    - echo "engine" >> car.txt
    - echo "car" >> car.txt
    - echo "$CI_COMMIT_TAG"
    - echo "$CI_COMMIT_REF_NAME"
    - echo $pwd
    - chmod +x .scripts/samplescript.sh
    - ./.scripts/samplescript.sh
  artifacts:
    paths:
      - build/

I am new to gitlab, tried running over multiple iterations, but didn’t work. Can someone please look into this.

Thanks a lot in advance

I was trying using this method but seems like that have a logical problem or interpretation(it’s adding to the pipeline if least one of them match), reading this section:

always

My case:

rules:
    - if: $CI_COMMIT_BRANCH == "development"
    - if: ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web") && $CI_COMMIT_TAG

I need that only add to the pipeline if two conditions match, I can solved that using this:

    - if: $CI_COMMIT_BRANCH == "development" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web") && $CI_COMMIT_TAG

But some cases have to many conditions and for linter purposes, want to avoid long lines, do you have some recommends?

Thank you advance!