我有一个詹金斯(Jenkins)作业测试每一个请求请求的推送。 Jenkins的工作分为两个阶段:1)设置2)并行构建(两个子阶段可在不同平台上构建项目)。因此,jenkinsfile具有以下结构:
pipeline {
agent any
stages {
stage("Setup") {
steps {
...
}
}
stage("Project Builds") {
parallel{
stage("Platform 1") {
steps {
...
}
}
stage("Platform 2") {
steps {
...
}
}
}
}
}
}
在Github上,对于状态检查配置,我只能选择阶段“设置”和“项目构建”。但是我想显示“平台1”和“平台2”。我该怎么办?
我在湛蓝的海洋中建立了詹金斯工作(这创建了一个Github存储库项目)。