GitLab CI Shell运行程序不继承系统环境变量

时间:2019-03-08 15:57:57

标签: php environment-variables sh gitlab-ci gitlab-ci-runner

在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 --noprofilesh,它们都可以在交互式shell中工作。

1 个答案:

答案 0 :(得分:0)

问题在于源不导出变量。如this answer中所述,您可以在set -a之前使用source