将页面启用到gitlab-ci时未知的关键字页面,

时间:2018-06-04 04:25:01

标签: gitlab-ci

我的.gitlab-ci.yml

中有以下内容
 ---
 test-foo-bar:
    before_script:
      - pwd
      - GIT_SSL_NO_VERIFY=true git clone https://192.168.122.1/foobar/myproj
      - cd myproj
      - ansible-playbook provision.yml -e test_suite_name=test-foo-bar
      - export ANSIBLE_HOST_KEY_CHECKING=False
      - chmod 0600 ssh_priv_key
   script:
     - ansible-playbook runtest.yml -e test_suite_name=test-foo-bar --tags shared,sssd
   pages:
     script:
       - mkdir .public
       - cp -r * .public
       - mv .public public
   artifacts:
     paths:
       - public

我在.gitlab-ci.yml中有上述内容,当我运行ci lint时, 它给出了错误:

Error: jobs:test-foo-bar config contains unknown keys: pages 

有关如何解决问题的任何提示。我们的gitlab实例支持页面,并且已经托管了很多静态html页面。

1 个答案:

答案 0 :(得分:0)

commit 7cef4f1

中引入了该错误消息

检查您的pages是否使用pages as documented:对于job entry,我看不到列出的.babelrc
例如,请记住projects in subgroup don't support pages无论如何。