Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Jenkinsに毎秒ビルド中にのみテストを実行させる方法は?
Use BUILD_NUMBER and groovy : 1. Jenkins Config => Evaluated Groovy script : def skipTests = false if( BUILD_NUMBER % 2 == 0 ) { skipTests = true }