mirror of
https://github.com/antos-rde/antos.git
synced 2025-07-21 00:09:49 +02:00
ci: export build file to public release
This commit is contained in:
17
Jenkinsfile
vendored
17
Jenkinsfile
vendored
@ -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 {
|
||||
|
Reference in New Issue
Block a user