You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by dp...@apache.org on 2017/06/30 15:13:51 UTC

[03/15] logging-log4net git commit: Added a first jenkinsfile that does echo on a windows node.

Added a first jenkinsfile that does echo on a windows node.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/cb03eeed
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/cb03eeed
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/cb03eeed

Branch: refs/heads/feature/RollingFileAppender-NG
Commit: cb03eeede4d231f2bd89bbf71941df3f90836b84
Parents: 8ba06aa
Author: Dominik Psenner <dp...@apache.org>
Authored: Fri Jun 30 10:58:58 2017 +0200
Committer: Dominik Psenner <dp...@apache.org>
Committed: Fri Jun 30 10:58:58 2017 +0200

----------------------------------------------------------------------
 Jenkinsfile | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/cb03eeed/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..02e6c9f
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+node('windows')
+{
+	dir('build')
+	{
+		stage('Checkout')
+		{
+			echo "checkout"
+			checkout scm
+		}
+		stage('Build')
+		{
+			echo "build"
+		}
+	}
+}
+