Ray Milkey | cfbc5be | 2018-05-08 09:13:13 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Ray Milkey | f7c5376 | 2018-05-10 16:12:15 +0000 | [diff] [blame] | 3 | # exit on errors |
| 4 | set -eu -o pipefail |
| 5 | |
Ray Milkey | cfbc5be | 2018-05-08 09:13:13 -0700 | [diff] [blame] | 6 | # initialize build environment |
| 7 | ONOS_ROOT=`pwd` |
| 8 | . tools/build/envDefaults |
| 9 | |
| 10 | # initialize development environment for STC |
| 11 | export JAVA_HOME= |
| 12 | . tools/dev/bash_profile |
| 13 | |
Ray Milkey | bad5c11 | 2018-11-09 14:24:07 -0800 | [diff] [blame] | 14 | PATH=$PATH:/home/jenkins/bin |
Ray Milkey | cfbc5be | 2018-05-08 09:13:13 -0700 | [diff] [blame] | 15 | |
| 16 | # always free the cell when exiting |
| 17 | function cleanup { |
| 18 | cell return jenkins-${ONOS_VERSION} |
| 19 | } |
| 20 | |
| 21 | trap cleanup EXIT |
| 22 | |
| 23 | # grab a cell to run on |
Ray Milkey | f7c5376 | 2018-05-10 16:12:15 +0000 | [diff] [blame] | 24 | cell borrow 30 3+1 jenkins-${ONOS_VERSION} |
Ray Milkey | cfbc5be | 2018-05-08 09:13:13 -0700 | [diff] [blame] | 25 | |
| 26 | # build onos bits |
| 27 | onos-buck build onos |
| 28 | |
| 29 | # set up STC parameters |
| 30 | topo default |
| 31 | export stcDumpLogs="true" |
| 32 | export stcColor="false" |
| 33 | export stcHaltOnError="false" |
| 34 | export TERM="vt100" |
| 35 | |
| 36 | # run STC |
| 37 | stc setup && stc net-trellis-hag-smoke |