forked from opencv/opencv-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
48 lines (44 loc) · 1.08 KB
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
set +e
echo "=== Loading config.sh === "
if [ -n "$IS_OSX" ]; then
echo " > OSX environment "
function build_wheel {
# Custom build_wheel function for OSX
# Run using '.' instead of '$REPO_DIR' to build from
# opencv-python instead of opencv
build_pip_wheel . $@
}
else
echo " > Linux environment "
fi
function pre_build {
echo "Starting pre-build"
set +e
if [ -n "$IS_OSX" ]; then
echo "Running for OSX"
source travis/build-wheels-osx.sh
else
echo "Running for linux"
source /io/travis/build-wheels.sh
fi
}
function run_tests {
# Runs tests on installed distribution from an empty directory
# python --version
# python -c 'import sys; import yourpackage; sys.exit(yourpackage.test())'
set +e
echo "Run tests..."
echo $PWD
ls -lh
if [ -n "$IS_OSX" ]; then
echo "Running for OS X"
cd ../tests/
source ../travis/test-wheels.sh
else
echo "Running for linux"
apt-get -y install libglib2.0-0
cd /io/tests/
source /io/travis/test-wheels.sh
fi
}