Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 94C1317588 for ; Fri, 24 Apr 2015 13:29:10 +0000 (UTC) Received: (qmail 52164 invoked by uid 500); 24 Apr 2015 13:29:10 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 52138 invoked by uid 500); 24 Apr 2015 13:29:10 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 52129 invoked by uid 99); 24 Apr 2015 13:29:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Apr 2015 13:29:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5345BE099D; Fri, 24 Apr 2015 13:29:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dnwe@apache.org To: commits@qpid.apache.org Message-Id: <1af6d872d81441d1b0831f37f726cfdb@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: qpid-proton git commit: NO-JIRA: move jenkins build script under bin/ Date: Fri, 24 Apr 2015 13:29:10 +0000 (UTC) Repository: qpid-proton Updated Branches: refs/heads/master c1a6de234 -> 1937bd1d8 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/master Commit: 1937bd1d89f504f08b23d13ddbf39b349fb49aa9 Parents: c1a6de2 Author: Dominic Evans Authored: Fri Apr 24 14:28:47 2015 +0100 Committer: Dominic Evans 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: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org