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.
26 lines
903 B
26 lines
903 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: nvcc --version |
|
- run: gcc --version |
|
- run: make LIBSO=1 GPU=0 CUDNN=0 OPENCV=0 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=0 CUDNN=0 OPENCV=0 DEBUG=1 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=0 CUDNN=0 OPENCV=0 AVX=1 -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=0 OPENCV=1 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=1 CUDNN=1 OPENCV=1 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=1 CUDNN=1 OPENCV=1 CUDNN_HALF=1 -j 8 |
|
- run: make clean |
|
- run: make LIBSO=1 GPU=1 CUDNN=1 OPENCV=1 CUDNN_HALF=1 USE_CPP=1 -j 8 |