File tree Expand file tree Collapse file tree 2 files changed +16
-20
lines changed Expand file tree Collapse file tree 2 files changed +16
-20
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- brew update
4
- brew install gcc
5
- brew upgrade gcc
6
- brew install cmake
7
- brew upgrade cmake
8
- brew install ant
9
- brew upgrade ant
10
- brew install python3
11
- brew linkapps python3
12
- pip3 install numpy
13
- pip3 install opencv-python
14
- mkdir -p $HOME /opencv/jni
3
+ # brew update
4
+ # brew install gcc
5
+ # brew upgrade gcc
6
+ # brew install cmake
7
+ # brew upgrade cmake
8
+ # brew install ant
9
+ # brew upgrade ant
10
+ # brew install python3
11
+ # brew linkapps python3
12
+ # pip3 install numpy
13
+ # pip3 install opencv-python
14
+ # mkdir -p $HOME/opencv/jni
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ addons:
18
18
sources :
19
19
- ubuntu-toolchain-r-test
20
20
packages :
21
- - gcc-4.8
22
- - g++-4.8
21
+ # - gcc-4.8
22
+ # - g++-4.8
23
23
- oracle-java8-installer
24
- - python3
24
+ # - python3
25
25
before_install :
26
26
- .travis-scripts/install.sh
27
27
- |
@@ -36,11 +36,7 @@ install:
36
36
script :
37
37
# Only run code generation tests on OSX -- linux requires sudo to install OpenCV dependencies, and that environment
38
38
# will not be able to run MainWindowTest.testDragOperationFromPaletteToPipeline
39
- - |
40
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
41
- then ./gradlew check jacocoTestReport jacocoRootReport --stacktrace -Pheadless=true -PlogTests --scan -Pgeneration -PjniLocation=$HOME/opencv/jni;
42
- else ./gradlew check jacocoTestReport jacocoRootReport --stacktrace -Pheadless=true -PlogTests --scan;
43
- fi
39
+ - ./gradlew check jacocoTestReport jacocoRootReport --stacktrace -Pheadless=true -PlogTests --scan;
44
40
45
41
after_success :
46
42
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then codecov ; fi
You can’t perform that action at this time.
0 commit comments