Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Dec 23, 2024
1 parent 9641ea6 commit 71efa0d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions linux_new/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,6 @@ stage('Build & Archive Package') {
def RHELTarget = ''
def RHELarchitecture = ''
def RHELDistro = "RPMS"
def RHELrel = Release
def RHELPackFiles = findFiles(glob: "**/rhel/build/ospackage/t*.rpm") // List All Packages To Upload For Temurin
for (RHELPackFile in RHELPackFiles) {
RHELFileName = RHELPackFile.name
Expand Down Expand Up @@ -844,7 +843,7 @@ stage('Build & Archive Package') {
echo "FileName = ${RHELFileName}"
echo "FilePath = ${RHELFilePath}"
// echo "DistroList = ${distro_list}"
CheckAndUpload(RHELTarget, RHELDistro, RHELarchitecture, '', '', RHELrel, RHELTarget, RHELkey, RHELFileName)
CheckAndUpload(RHELTarget, RHELDistro, RHELarchitecture, '', '', '', RHELTarget, RHELkey, RHELFileName)
// From Original : CheckAndUpload(Target, Distro, rpmArchList.each, '', '', VALUE , PACKAGEDIR, KEY, '' )

// Received From Alpine : CheckAndUpload(Target, UpDistro, buildArch, '', '', '', '', '' , FileName)
Expand All @@ -858,7 +857,6 @@ stage('Build & Archive Package') {
def SUSETarget = ''
def SUSEarchitecture = ''
def SUSEDistro = "RPMS"
def SUSErel = Release
def SUSEPackFiles = findFiles(glob: "**/suse/build/ospackage/t*.rpm") // List All Packages To Upload For Temurin
for (SUSEPackFile in SUSEPackFiles) {
SUSEFileName = SUSEPackFile.name
Expand Down Expand Up @@ -887,7 +885,7 @@ stage('Build & Archive Package') {
echo "FileName = ${SUSEFileName}"
echo "FilePath = ${SUSEFilePath}"
// echo "DistroList = ${distro_list}"
CheckAndUpload(SUSETarget, SUSEDistro, SUSEarchitecture, '', '', SUSErel, SUSETarget, SUSEkey, SUSEFileName)
CheckAndUpload(SUSETarget, SUSEDistro, SUSEarchitecture, '', '', '', SUSETarget, SUSEkey, SUSEFileName)
// From Original : CheckAndUpload(Target, Distro, rpmArchList.each, '', '', VALUE , PACKAGEDIR, KEY, '' )

// Received From Alpine : CheckAndUpload(Target, UpDistro, buildArch, '', '', '', '', '' , FileName)
Expand Down

0 comments on commit 71efa0d

Please sign in to comment.