blob: 4eb45bf9058ad7cb004cf377fc089b024a3084b9 [file] [log] [blame]
Ray Milkey9eb58512018-08-15 10:52:12 -07001#!/bin/bash
2
3# exit on errors
4set -eu -o pipefail
5
6# initialize build environment
7ONOS_ROOT=`pwd`
8. tools/build/envDefaults
9
10# initialize development environment for STC
11export JAVA_HOME=
12. tools/dev/bash_profile
13
Ray Milkey9eb58512018-08-15 10:52:12 -070014PATH=$PATH:/home/jenkins/bin
15
16# always free the cell when exiting
17function cleanup {
18 cell return jenkins-${ONOS_VERSION}
19}
20
21trap cleanup EXIT
22
23# grab a cell to run on
24cell borrow 30 3+1 jenkins-${ONOS_VERSION}
25
26# build onos bits
27bazel build onos
28
29# set up STC parameters
30topo default
31export stcDumpLogs="true"
32export stcColor="false"
33export stcHaltOnError="false"
34export TERM="vt100"
35
36# run STC
37stc