Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Dec 20, 2024
1 parent 90fbcf7 commit 7b0c8a6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions linux_new/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -771,12 +771,14 @@ stage('Build & Archive Package') {
def AllFiles = PackFiles + SrcFiles
for (PackFile in AllFiles) {
def AlpFileName = PackFile.name
def AlpFilePath = AlpPackFile.path
def Target = "https://adoptium.jfrog.io/artifactory/apk/alpine/main/${arch}/${AlpFileName}"
echo "Debug 1000 - Alpine Upload Debugging"
echo "Target = ${Target}"
echo "Distro = ${AlpDistro}"
echo "buildArch = ${arch}"
echo "FileName = ${AlpFileName}"
echo "FilePath = ${AlpFilePath}"
CheckAndUpload(Target, AlpDistro, arch, '', '', '', '', '' , AlpFileName)
}
}
Expand All @@ -793,13 +795,15 @@ stage('Build & Archive Package') {
def DebPackFiles = findFiles(glob: "**/build/ospackage/temurin-*.deb") // List All Packages To Upload
for (DebPackFile in DebPackFiles) {
DebFileName = DebPackFile.name
def DebFilePath = DebPackFile.path
DebTarget = "https://adoptium.jfrog.io/artifactory/deb/pool/main/t/temurin-${Release}/${DebFileName}"
echo "Debug 1001 - Debian Upload Debugging"
echo "Target = ${DebTarget}"
echo "Distro = ${DebDistro}"
echo "buildArch = ${arch}"
echo "Release = ${Release}"
echo "FileName = ${DebFileName}"
echo "FilePath = ${DebFilePath}"
echo "DistroList = ${distro_list}"
CheckAndUpload(DebTarget, DebDistro, arch, '', distro_list, '', '', '' , DebFileName)
}
Expand Down

0 comments on commit 7b0c8a6

Please sign in to comment.