Jenkinsfile: Archive artifacts

This commit is contained in:
snow flurry 2025-01-07 13:25:06 -08:00
parent 445fe859a2
commit 79a4139ade

3
.ci/Jenkinsfile vendored
View file

@ -12,6 +12,9 @@ pipeline {
}
steps {
sh 'gcc -o hello main.c'
archiveArtifacts artifacts: 'hello',
followSymlinks: false,
onlyIfSuccessful: true
}
}
}