Skip to content

Commit

Permalink
Check OpenCV details
Browse files Browse the repository at this point in the history
  • Loading branch information
rajat2004 committed Jan 3, 2020
1 parent e989065 commit 3be901c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:

- name: xenial-opencv
dist: xenial
script: CIINSTALL=yes ./opencvDirectInstall.sh
script:
- CIINSTALL=yes ./opencvDirectInstall.sh
- python3 -c "import cv2; print(cv2.__version__); print(cv2.getBuildInformation());"
python: 3.7

- name: xenial-ml
Expand All @@ -36,6 +38,7 @@ jobs:
- hash -r # To reload env vars like PATH
- conda info -a
- CIINSTALL=yes ./opencvDirectInstall.sh
- python -c "import cv2; print(cv2.__version__); print(cv2.getBuildInformation());"
python: 3.7

- name: bionic-basic
Expand All @@ -50,7 +53,9 @@ jobs:

- name: bionic-opencv
dist: bionic
script: CIINSTALL=yes ./opencvDirectInstall.sh
script:
- CIINSTALL=yes ./opencvDirectInstall.sh
- python3 -c "import cv2; print(cv2.__version__); print(cv2.getBuildInformation());"
python: 3.7

- name: bionic-ml
Expand All @@ -71,6 +76,7 @@ jobs:
- hash -r # To reload env vars like PATH
- conda info -a
- CIINSTALL=yes ./opencvDirectInstall.sh
- python -c "import cv2; print(cv2.__version__); print(cv2.getBuildInformation());"
python: 3.7

before_install:
Expand Down

0 comments on commit 3be901c

Please sign in to comment.