我尝试实现条件版本控制,具体取决于CI脚本是否针对标记的分支运行。 但是版本var无法解析。而是将其打印为字符串。
GitLab CI脚本的相关作业:
# build template
.build_base_template: &build_base_template
image: registry.gitlab.com/xxxxxxx/npm:latest
tags:
- docker
stage: LintBuildTest
script:
- export CUR_VERSION='$(cat ./version.txt)$BUILD_VERSION_SUFFIX'
- npm ci
- npm run build
artifacts:
expire_in: 1 week
paths:
- dist/
# default build job
build:
before_script:
- export BUILD_VERSION_SUFFIX='-$CI_COMMIT_REF_SLUG-SNAPSHOT-$CI_COMMIT_SHORT_SHA'
<<: *build_base_template
except:
refs:
- tags
only:
variables:
- $FEATURE_NAME == null
# specific build job for tagged versions
build_tag:
before_script:
- export BUILD_VERSION_SUFFIX=''
<<: *build_base_template
only:
refs:
- tags
答案 0 :(得分:2)
通常,您不能将变量从子进程导出到父进程。
作为解决方法,您可以使用文本文件来写入/读取变量值。也许也可以通过yaml模板传递变量。
答案 1 :(得分:0)
在 before_script 中导出的变量在 script 中可见。
before:
before_script:
- export HELLOWELT="hi martin"
script:
- echo $HELLOWELT # prints "hi martin"