-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove debian CI testing from build.o.o (#1198)
Signed-off-by: Jose Luis Rivero <[email protected]>
- Loading branch information
Showing
1 changed file
with
0 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,87 +2,6 @@ import _configs_.* | |
import javaposse.jobdsl.dsl.Job | ||
|
||
Globals.default_emails = "[email protected]" | ||
|
||
packages = [:] | ||
packages['science-team'] = ['console-bridge', | ||
'gazebo', | ||
'fcl', | ||
'ignition-cmake', | ||
'ignition-common', | ||
'ignition-math2', | ||
'ignition-math4', | ||
'ignition-msgs', | ||
'ignition-tools', | ||
'ignition-transport', // version 4 | ||
'dart', | ||
'libccd', | ||
'octomap', | ||
'sdformat', // version 6 | ||
'simbody', | ||
'urdfdom', | ||
'urdfdom-headers' ] | ||
|
||
packages['jrivero-guest'] = ['empy'] | ||
|
||
|
||
packages.each { repo_name, pkgs -> | ||
pkgs.each { pkg -> | ||
|
||
// -------------------------------------------------------------- | ||
// 2. Create the job that tries to build the package and run lintian | ||
def ci_job = job("${pkg}-pkg_builder-master-debian_sid-amd64") | ||
OSRFLinuxBuildPkgBase.create(ci_job) | ||
ci_job.with | ||
{ | ||
scm { | ||
git { | ||
remote { | ||
url("https://salsa.debian.org/${repo_name}/${pkg}.git") | ||
} | ||
extensions { | ||
cleanBeforeCheckout() | ||
relativeTargetDirectory('repo') | ||
} | ||
|
||
branch('refs/heads/master') | ||
} | ||
} | ||
|
||
properties { | ||
priority 350 | ||
} | ||
|
||
parameters { | ||
textParam("RELEASE_VERSION", null, "osrfX, OSRF postix version") | ||
textParam("RELEASE_ARCH_VERSION", null, "~ARCH-X, release version") | ||
} | ||
|
||
steps { | ||
shell("""\ | ||
#!/bin/bash -xe | ||
|
||
export LINUX_DISTRO=debian | ||
export DISTRO=sid | ||
|
||
/bin/bash -xe ./scripts/jenkins-scripts/docker/debian-git-debbuild.bash | ||
""".stripIndent()) | ||
} | ||
|
||
publishers | ||
{ | ||
// Added the lintian parser | ||
configure { project -> | ||
project / publishers << 'hudson.plugins.logparser.LogParserPublisher' { | ||
unstableOnWarning true | ||
failBuildOnError false | ||
parsingRulesPath('/var/lib/jenkins/logparser_lintian') | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
// ratt package to help during transition | ||
def ratt_pkg_job = job("debian-ratt-builder") | ||
OSRFLinuxBase.create(ratt_pkg_job) | ||
|