You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by he...@apache.org on 2020/10/10 18:16:35 UTC

[netbeans] 01/01: Create Jenkinsfile.groovy

This is an automated email from the ASF dual-hosted git repository.

hectorespert pushed a commit to branch hectorespert-patch-1
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit a0febf043582b66acb09919ed0c2c39e7f02cdb5
Author: Hector Espert <he...@gmail.com>
AuthorDate: Sat Oct 10 20:16:21 2020 +0200

    Create Jenkinsfile.groovy
---
 nbbuild/jenkins/linux/Jenkinsfile.groovy | 33 ++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/nbbuild/jenkins/linux/Jenkinsfile.groovy b/nbbuild/jenkins/linux/Jenkinsfile.groovy
new file mode 100644
index 0000000..095695a
--- /dev/null
+++ b/nbbuild/jenkins/linux/Jenkinsfile.groovy
@@ -0,0 +1,33 @@
+/*
+ * 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.
+ */
+ 
+pipeline {
+    agent { 
+        node { 
+            label 'ubuntu' 
+        }
+    }
+    stages {
+        stage("Print env") {
+            steps {
+                sh 'printenv'
+            }
+        }
+    }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists