change Archive Build Artifacts

This commit is contained in:
William Bell
2025-12-01 02:22:44 +00:00
parent 7d272a2f4d
commit 5741fb4185

29
Jenkinsfile vendored
View File

@@ -79,20 +79,33 @@ pipeline {
} }
} }
stage('Archive Build Artifacts') { stage('Archive Build Artifacts') {
steps { steps {
script {
// Determine platform
def os = sh(returnStdout: true, script: 'uname -s').trim().toLowerCase()
def arch = sh(returnStdout: true, script: 'uname -m').trim().toLowerCase()
// Determine version (tag or "dev")
def version = env.TAG_NAME ?: "dev"
// Construct file name
env.OUTPUT_FILE = "chloride-${version}-${os}-${arch}.tar.gz"
echo "Packaging as: ${env.OUTPUT_FILE}"
}
sh ''' sh '''
# Copy LICENSE.txt into build/bin # Ensure LICENSE.txt is in the output directory
cp LICENSE.txt build/bin/ cp LICENSE.txt build/bin/
# Create tarball with the contents of build/bin at the root # Create tarball with auto-generated name
tar -czf chloride-linux-x86_64.tar.gz -C build/bin . tar -czf "$OUTPUT_FILE" -C build/bin .
''' '''
// Archive the tarball
archiveArtifacts artifacts: 'chloride-linux-x86_64.tar.gz', allowEmptyArchive: false archiveArtifacts artifacts: "${env.OUTPUT_FILE}", allowEmptyArchive: false
}
}
} }
}
post { post {
always { always {