-1

我刚刚将 Gitlab CE 更新到最新版本 8.3.4。在升级之前,我的 Gitlab CI 运行良好。

升级后,我的 Gitlab CI 触发了新的构建,但它们在开始时挂起。升级我的 Gitlab CI 运行器后,构建开始但再次挂起。我在控制台中看不到任何输出。

如果我检查跑步者上的文件夹 ~/builds,我注意到构建在执行之前挂起grunt

这是我的 .gitlab-ci.yml 文件:

before_script:
  - chmod 755 config/gitlab-runner/*
  - cp -r ~/cache/myproject/node_modules .
  - npm --proxy http://localhost:8080 --https-proxy http://localhost:8080 --strict-ssl false update
  - bower install
  - grunt --force
  - cp -r node_modules ~/cache/myproject/

deploy-dev:
  type: deploy
  script: "config/gitlab-runner/deploy-pp-dev.sh"
  only:
  - master

你有什么暗示我可以调试这个吗?application.log、production.log 或 sidekiq.log 中没有相关日志。

4

1 回答 1

0

我从头开始重新安装了整个 Gitlab,重新导入了我的项目,它解决了我的问题。

于 2016-01-21T08:54:20.217 回答