summaryrefslogtreecommitdiff
path: root/share/spack/qa/run-build-tests
blob: b5d5aed28f8dfb81c08e9d1949ea928570d88a28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash -e
#
# Description:
#     Runs Spack build smoke tests.  This installs a few packages that
#     cover different parts of the build system.  It is not an exhaustive
#     test of Spack's packages.
#
# Usage:
#     run-build-tests
#
. "$(dirname $0)/setup.sh"
check_dependencies ${coverage} git hg svn

# Move to root directory of Spack
# Allows script to be run from anywhere
cd "$SPACK_ROOT"

# Make sure we have a spec to build.
if [ -z "$SPEC" ]; then
    echo "Error: run-build-tests requires the $SPEC to build to be set."
    exit 1
fi

# Print compiler information
spack config get compilers

# Run some build smoke tests, potentially with code coverage
${coverage_run} bin/spack install -v ${SPEC}
${coverage_combine}