Created
February 27, 2011 10:01
-
-
Save tyuki39/846062 to your computer and use it in GitHub Desktop.
Jenkinsで他のプロジェクトのビルドを実行する方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 他のプロジェクトのビルドを実行する方法 | |
// 以下は groovy plugin の Execute system Groovy script の中で使用して | |
// TEST プロジェクトのビルドを実行する例 | |
def jobname = "TEST" | |
hudson.model.Hudson.instance.getItem(jobname).scheduleBuild() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment