如何在 jenkins 管道中运行 serverspec 脚本?我试试这个
node {
stage('serverspec') {
sh 'rake spec'
}
}
但后来我收到以下错误:
Port "8080" should be listening
Failure/Error: it { should be_listening }
Errno::ENOTTY:
Inappropriate ioctl for device
我已经编写了一种 wrapper-bash-wrapper 调用 $ rake spec 命令,但它不会改变结果。我已经找到了一个教程,其中安装了额外的 Rake 插件,但我不能不知道与直接调用测试用例有什么不同也许这里有人可以给我一个提示或简短的解释我什么我做错了。最好的问候丹