mirror of https://github.com/AlexeyAB/darknet.git
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.
14 lines
409 B
14 lines
409 B
version: 2.0 |
|
jobs: |
|
build: |
|
docker: |
|
- image: alantrrs/cuda-opencv:latest |
|
# - image: nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04 |
|
working_directory: ~/work |
|
steps: |
|
- checkout |
|
- run: make LIBSO=1 GPU=0 CUDNN=0 OPENCV=0 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=0 CUDNN=0 OPENCV=1 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=1 CUDNN=1 OPENCV=1 -j 8
|
|
|