-
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.
Merge branch 'master' into jrivero/conda_configs
- Loading branch information
Showing
20 changed files
with
115 additions
and
207 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
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
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 |
---|---|---|
@@ -1 +1,14 @@ | ||
export APT_INSTALL="sudo DEBIAN_FRONTEND=noninteractive apt-get install -y" | ||
|
||
generate_buildsh_header() | ||
{ | ||
SHELL_ON_ERRORS=${SHELL_ON_ERRORS:-false} | ||
echo "#!/bin/bash" | ||
echo "set -ex" | ||
if ${SHELL_ON_ERRORS}; then | ||
echo 'trap "/bin/bash" 0 INT QUIT ABRT PIPE TERM' | ||
fi | ||
if $GENERIC_ENABLE_TIMING; then | ||
echo "source ${TIMING_DIR}/_time_lib.sh ${WORKSPACE}" | ||
fi | ||
} |
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
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
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
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
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
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
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
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
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
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
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
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) | ||
|
Oops, something went wrong.