在GitLab CI / CD管道中运行作业时,是否有办法使GitLab Runner(shell运行器)启动进程来继承系统环境(/etc/environment
)中定义的变量?
.gitlab-ci.yml
的相关部分:
synchronize data:
stage: synchronize
only:
refs:
- schedules
variables:
GIT_STRATEGY: none
script:
- [[ -s /etc/environment && -r /etc/environment ]] && source /etc/environment
# - printenv|sort
- echo $APP_ENV
- php -r "var_dump(getenv('APP_ENV'));"
这是作业执行的输出:
Running with gitlab-runner 11.4.2 (cf91d5e1)
on <redacted> 9b533a38
Using Shell executor...
Running on <redacted>...
Skipping Git repository setup
Skipping Git checkout
Skipping Git submodules setup
$ [[ -s /etc/environment && -r /etc/environment ]] && source /etc/environment
$ echo $APP_ENV
development
$ php -r "var_dump(getenv('APP_ENV'));"
bool(false)
echo
仅在我显式提供文件源的情况下有效,但是PHP仍然没有选择该变量。
在计算机上,我运行了此变量,gitlab-runner
用户绝对可以访问变量:
[@localhost ~]$ sudo -u gitlab-runner -i bash --norc --noprofile
bash-4.2$ echo $APP_ENV
development
bash-4.2$ php -r 'var_dump(getenv("APP_ENV"));'
string(11) "development"
我还尝试了bash
,而没有--norc --noprofile
和sh
,它们都可以在交互式shell中工作。