docker_install_run.sh 362 Bytes
Newer Older
1
2
3
4
5
6
7
8
#!/bin/bash
# Install and test steps on Linux
set -e

# Get needed utilities
MULTIBUILD_DIR=$(dirname "${BASH_SOURCE[0]}")
source $MULTIBUILD_DIR/common_utils.sh

9
10
11
12
13
14
15
# Configuration for this package
# This can ovverride `install_wheel`, otherwise defined in common_utils.sh.
# It must define `run_tests`.
source $(get_root)/config_funcs.sh

install_wheel
run_tests