Skip to content

Commit

Permalink
Add a new jenkins script to run the tsqa tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zwoop committed Jan 9, 2015
1 parent 011e434 commit a0998e1
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions ci/jenkins/tsqa.sh
@@ -0,0 +1,54 @@
#!/bin/sh
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# This does intentionally not run the regressions, it's primarily a "build" test

# Test if we should enable CPPAPI (only 5.0 and later for now)
enable_cppapi="--enable-cppapi"
test "${JOB_NAME#*-4.2.x}" != "${JOB_NAME}" && enable_cppapi=""

# Where do we run this?
TS_PREFIX="/opt/jenkins/${JOB_NAME}"
TSQA_TSXS=${TS_PREFIX}/bin/tsxs; export TSXS

cd "${WORKSPACE}/src"

rm -rf ${TS_PREFIX}

# This needs to be added back when we resolve all debug build issues
# --enable-debug \
autoreconf -fi
./configure \
--prefix=${TS_PREFIX} \
--enable-ccache \
--enable-werror \
--enable-experimental-plugins \
--enable-test-tools \
${enable_cppapi}

${ATS_MAKE} -j8
${ATS_MAKE} install
${ATS_MAKE} clean

# Run all the TSQA tests
cd ci/tsqa || exit 2
./run_all.sh
status=$?

# Exit with proper status, right now there's only one test, but still
exit $status

0 comments on commit a0998e1

Please sign in to comment.