You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/07/31 05:48:47 UTC

[camel] branch main updated: Removed Jenkinsfile for Dryrun

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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 165451c5e7f Removed Jenkinsfile for Dryrun
165451c5e7f is described below

commit 165451c5e7f0e2b1d260abb1258c02203654c002
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jul 31 07:48:30 2023 +0200

    Removed Jenkinsfile for Dryrun
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 Jenkinsfile.dryrun | 61 ------------------------------------------------------
 1 file changed, 61 deletions(-)

diff --git a/Jenkinsfile.dryrun b/Jenkinsfile.dryrun
deleted file mode 100644
index b289d94cdad..00000000000
--- a/Jenkinsfile.dryrun
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * 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.
- */
-def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
-def JDK_NAME = env.JDK_NAME ?: 'jdk_17_latest'
-
-pipeline {
-
-    agent {
-        label AGENT_LABEL
-    }
-
-    tools {
-        jdk JDK_NAME
-    }
-
-    environment {
-        MAVEN_SKIP_RC = true
-    }
-
-    options {
-        buildDiscarder(
-            logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
-        )
-        disableConcurrentBuilds()
-    }
-
-    stages {
-
-        stage('Dryrun') {
-            steps {
-                sh "./mvnw release:prepare -DdryRun -Prelease"
-            }
-        }
-
-    }
-
-    post {
-        always {
-            emailext(
-                subject: '${DEFAULT_SUBJECT}',
-                body: '${DEFAULT_CONTENT}',
-                recipientProviders: [[$class: 'CulpritsRecipientProvider']]
-            )
-        }
-    }
-}
-