Jenkinsfile: renamed stages
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/f6fcb503 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/f6fcb503 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/f6fcb503 Branch: refs/heads/develop Commit: f6fcb5030dc9cf2646138649c0e297d56b43925d Parents: f211495 Author: Dominik Psenner <[email protected]> Authored: Mon Jul 3 10:14:42 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Mon Jul 3 10:14:42 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/f6fcb503/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index a1064c6..302813a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,24 +36,24 @@ pipeline { checkout scm } } - stage('Build on Windows') { + stage('Build net-4.0') { steps { bat "${NAnt} -buildfile:log4net.build compile-net-4.0" } } - stage('Build on builder-mono-2.0') { + stage('Build mono-2.0') { agent { dockerfile { dir 'buildtools/docker/builder-mono-2.0' } } steps { sh "nant -buildfile:log4net.build compile-momo-2.0" } } - stage('Build on builder-mono-3.5') { + stage('Build mono-3.5') { agent { dockerfile { dir 'buildtools/docker/builder-mono-3.5' } } steps { sh "nant -buildfile:log4net.build compile-momo-3.5" } } - stage('Build on builder-mono-4.0') { + stage('Build mono-4.0') { agent { dockerfile { dir 'buildtools/docker/builder-mono-4.0' } } steps { sh "nant -buildfile:log4net.build compile-momo-4.0"
