Skip to content
Snippets Groups Projects
Commit 30d3dbce authored by Emanuele Aina's avatar Emanuele Aina
Browse files

Drop old Jenkinsfile pipeline


We've moved to GitLab a while ago.

Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent b6fb0dee
Branches debian/bullseye-nonfree
Tags debian/1.20200212-1
1 merge request!48Drop Jenkins mentions
Pipeline #253320 passed
pipeline {
environment {
release = "v2022dev1"
branch = "apertis/${release}"
}
agent any
stages {
stage("Update test binaries from packages") {
steps {
sshagent (credentials: [ "79a6e702-d0b5-423a-b8e2-8dcd0ab6d2aa" ] ) {
sh "echo Current release: ${release}"
sh "echo Current branch: ${branch}"
sh "${workspace}/updater.sh ${release} ${branch}"
}
}
}
stage("Cleanup") {
steps {
deleteDir()
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment