gpt4 book ai didi

curl - 如何在gitlab-ci文件中使用curl?

转载 作者:行者123 更新时间:2023-12-04 22:50:18 27 4
gpt4 key购买 nike

在我的gitlab-ci文件中,我想使用命令curl来获取页面的结果并验证其内容,但是我不知道如何使用它。

....................
server:check-quality:
<<: *all-settings
stage: check-quality
<<: *tags_definition
script:
- echo "APPEL de CURL"
- content=($curl http://example.com/sonar/api/qualitygates/project_status?projectKey=com.orange.catalog:feature-m752-conditionequals)
- echo "content"
- exit 0
only:
- develop
- /^feature.*$/
- /^hotfix.*$/


你有什么主意吗?

最佳答案

在脚本中,您可以使用curl

script:
- echo "APPEL de CURL"
- curl http://example.com/sonar/api/qualitygates/project_status?projectKey=com.orange.catalog:feature-m752-conditionequals
- echo "content"
- exit 0

关于curl - 如何在gitlab-ci文件中使用curl?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51790984/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com