Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Oct 8, 2024
1 parent 72ac252 commit e345d56
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion linux/sfr.dev/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def dlURL = "${baseURL}/${binaryDLRepo}"
// Global Variables
def DLfilenames = []
def JDKArray = []
def ModifiedJDKArray = []
def distro = ""
def arch = ""
def ReleaseVersion = ""
Expand Down Expand Up @@ -172,6 +173,10 @@ pipeline {
echo "Expected Sum : ${expectedChecksum}"
echo "Actual Sum : ${calculatedChecksum}"
// Remove
// Update The JDKArray With The Actual Checksum
ModifiedJDKArray = JDKArray.collect { tuple ->
tuple + "${calculatedChecksum}"
}

}
}
Expand All @@ -188,7 +193,7 @@ pipeline {
// sh "ls -ltr"
echo "Debug"
// echo "${JDKArray}"
JDKArray.each { ArrayElement ->
ModifiedJDKArrayJDKArray.each { ArrayElement ->
echo "${ArrayElement}"
// def PTYPE = ArrayElement[0]
// def PFILE = ArrayElement[1]
Expand Down

0 comments on commit e345d56

Please sign in to comment.