#!/bin/bash -ex | |
# exit on errors | |
set -eu -o pipefail | |
# set up ONOS build environment | |
ONOS_ROOT=`pwd` | |
. tools/build/envDefaults | |
PATH=$PATH:/home/jenkins/bin | |
# import GPG key | |
gpg --import jenkins.key | |
# run the verification build - versions don't matter here, artifacts are never published | |
onos-build-and-upload 1.12.0-testbuild 1.12-SNAPSHOT master --dry-run |