NO-JIRA: move jenkins build script under bin/
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/1937bd1d Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/1937bd1d Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/1937bd1d Branch: refs/heads/kgiusti-python3 Commit: 1937bd1d89f504f08b23d13ddbf39b349fb49aa9 Parents: c1a6de2 Author: Dominic Evans <[email protected]> Authored: Fri Apr 24 14:28:47 2015 +0100 Committer: Dominic Evans <[email protected]> Committed: Fri Apr 24 14:28:47 2015 +0100 ---------------------------------------------------------------------- jenkins-proton-c-build.sh | 41 ----------------------------------------- 1 file changed, 41 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/1937bd1d/jenkins-proton-c-build.sh ---------------------------------------------------------------------- diff --git a/jenkins-proton-c-build.sh b/jenkins-proton-c-build.sh deleted file mode 100755 index cb03662..0000000 --- a/jenkins-proton-c-build.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -e -# -# This is the continuous delivery build script executed after a git -# extract by the Jenkins build process located at the following URL: -# https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-proton-c/ -# -CMAKE_FLAGS=-DCMAKE_BUILD_TYPE=DEBUG -XMLOUTPUT=testresults/TEST-protonc.xml - -echo Arch: `arch` Uname: `uname -a` lsb_release: `lsb_release -a` User: `whoami` -echo Java home: $JAVA_HOME - -echo ========================= -echo Listing installed packages -dpkg -l | \ - awk '/^ii (cmake |ruby |python |php |.*jdk |swig[0-9]*)/{print $2, $3}'| \ - sort -echo ========================= - -which python || exit 1 -which swig || exit 1 - -set -x -ls - -rm -rf build testresults >/dev/null 2>&1 -mkdir build testresults >/dev/null 2>&1 -cd build >/dev/null 2>&1 -cmake ${CMAKE_FLAGS} .. -make all -cd .. >/dev/null 2>&1 - -echo Running tests - -. build/config.sh -./tests/python/proton-test --xml=${XMLOUTPUT} - -cd build -ctest -V -R "^c-*" - -echo 'Build completed' --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
