You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
432 B
21 lines
432 B
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# all command failures are fatal
|
|
set -e
|
|
|
|
WORKSPACE=`dirname $TRAVIS_BUILD_DIR`
|
|
|
|
echo "Workspace: $WORKSPACE"
|
|
|
|
source $TRAVIS_BUILD_DIR/.ci/download-deps.sh
|
|
|
|
get_deps "$WORKSPACE"
|
|
|
|
export LD_LIBRARY_PATH=/usr/local/lib/
|
|
export PATH=/root/.local/bin/:/ibmtpm974/src:$PATH
|
|
|
|
echo "echo changing to $TRAVIS_BUILD_DIR"
|
|
# Change to the the travis build dir
|
|
cd $TRAVIS_BUILD_DIR
|