如何将字符串附加到Jenkins变量“BUILD_URL”

epfja78i  于 2023-08-03  发布在  Jenkins
关注(0)|答案(2)|浏览(160)

我用的是Cppcheck Plugin。我试图发送Cppcheck Results的网址在电子邮件中一旦Jenkins的工作完成。
我尝试将Default Content设置为:

View this URL for Cppcheck Results: $BUILD_URL + "cppcheckResult/"

字符串
但我收到的电子邮件有以下文字:

View this URL for Cppcheck Results: https://myurl/job/fscopy/7/+"cppcheckResult/"


有人能帮我弄清楚我如何在电子邮件中发送正确的URL吗?

https://myurl/job/fscopy/7/cppcheckResult/

1u4esq0p

1u4esq0p1#

我通过创建CPPCHECK环境变量并使用它来解决它,如下所示:

View this URL for Cppcheck Results: $BUILD_URL$CPPCHECK

字符串
它在电子邮件中给了我如下输出:

View this URL for Cppcheck Results: https://myurl/job/fscopy/7/cppcheckResult/

vshtjzan

vshtjzan2#

可以使用${BUILD_URL}cppcheckResult/进行插值,中间不带任何空格

相关问题