Skip to content

Commit

Permalink
ci: move deb to Jenkins
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Bandeira <[email protected]>
  • Loading branch information
Vitor Bandeira committed Nov 1, 2024
1 parent 9296dfe commit f3d1fa8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,40 @@ def getParallelTests(String image) {

];

deb_os = [
[name: 'Ubuntu 20.04' , image: 'openroad/ubuntu20.04-dev'],
[name: 'Ubuntu 22.04' , image: 'openroad/ubuntu22.04-dev'],
[name: 'Debian 11' , image: 'openroad/debian11-dev']
];

deb_os.each { os ->
ret["Build .deb - ${os.name}"] = {
node {
stage('Setup and Build') {
withDockerContainer(args: '-u root', image: os.image) {
sh label: 'Configure git', script: "git config --system --add safe.directory '*'";
checkout([
$class: 'GitSCM',
branches: [[name: scm.branches[0].name]],
doGenerateSubmoduleConfigurations: false,
extensions: [
[$class: 'CloneOption', noTags: false],
[$class: 'SubmoduleOption', recursiveSubmodules: true]
],
submoduleCfg: [],
userRemoteConfigs: scm.userRemoteConfigs
]);
def version = sh(script: 'git describe | sed s,^v,,', returnStdout: true).trim();
sh label: 'Create Changelog', script: "./debian/create-changelog.sh ${version}";
sh label: 'Run debuild', script: 'debuild --preserve-env --preserve-envvar=PATH -B -j$(nproc)';
sh label: 'Move generated files', script: 'mv -v ../*' + "${version}" + '* .';
archiveArtifacts artifacts: '*' + "${version}" + '*';
}
}
}
}
}

return ret;
}

Expand Down

0 comments on commit f3d1fa8

Please sign in to comment.