blob: 5c4341741ec8e34a095590fccd89fa4ed4b84395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
# log info to console
echo "Starting unit tests for Apex..."
echo "---------------------------------------------------------------------------------------"
echo
pushd ci/ > /dev/null
sudo CONFIG="${WORKSPACE}/build" LIB="${WORKSPACE}/lib" ./clean.sh
./test.sh
popd
echo "--------------------------------------------------------"
echo "Unit Tests Done!"
|