ci: export build file to public release
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
gitea-sync/antos/pipeline/tag This commit looks good

This commit is contained in:
DanyLE
2024-04-29 10:20:52 +02:00
parent 3df1bb4729
commit b0e51d5a52
2 changed files with 33 additions and 1 deletions

17
Jenkinsfile vendored
View File

@ -106,6 +106,23 @@ pipeline {
}
}
}
stage('Copy doc') {
steps {
sh'''
DOCDIR=/home/dany/public/antos-release/doc/ make doc
SDKDIR=/home/dany/public/antos-release/sdk/ make sdk
'''
}
}
stage('Copy Binaries') {
steps {
sh'''
BINDIR="/home/dany/public/antos-release/binaries/"
find ./build/ -name "*.deb" -exec install -Dm 755 "{}" "$BINDIR/deb" \\;
find ./build/ -name "*.AppImage" -exec install -Dm 755 "{}" "$BINDIR/appimg" \\;
'''
}
}
stage('Archive') {
steps {
script {