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

jungm pushed a commit to branch ee11
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/ee11 by this push:
     new 85e0fa7  ci: remove stashing/unstashing
85e0fa7 is described below

commit 85e0fa71ada2dfe4476622256b3f6671bb39555d
Author: Markus Jung <[email protected]>
AuthorDate: Sun Jul 19 16:59:49 2026 +0200

    ci: remove stashing/unstashing
---
 Jenkinsfile | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 98a4544..fab58d1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -47,7 +47,6 @@ pipeline {
         deleteDir()
 
         checkout scm
-        stash name: 'source'
 
         sh 'sh environment/verify-inputs.sh --metadata-only'
         sh '''
@@ -109,7 +108,7 @@ from xml.etree import ElementTree
             options { timeout(time: 30, unit: 'MINUTES') }
             steps {
               deleteDir()
-              unstash 'source'
+              checkout scm
               script {
                 docker.image(smokeImages[SMOKE_JDK]).inside {
                   withEnv(["HOME=${env.WORKSPACE}",
@@ -143,7 +142,7 @@ from xml.etree import ElementTree
               stage(branchName) {
                 node('ubuntu && ephemeral') {
                   deleteDir()
-                  unstash 'source'
+                  checkout scm
 
                   try {
                     timeout(time: 360, unit: 'MINUTES') {
@@ -200,7 +199,7 @@ from xml.etree import ElementTree
               stage("standalone - ${id}") {
                 node('ubuntu && ephemeral') {
                   deleteDir()
-                  unstash 'source'
+                  checkout scm
 
                   try {
                     timeout(time: timeoutMinutes, unit: 'MINUTES') {

Reply via email to