darknet/.circleci/config.yml

22 lines
690 B
YAML
Raw Normal View History

2017-10-19 06:54:17 +08:00
version: 2.0
jobs:
build:
docker:
2017-10-20 04:28:27 +08:00
- image: alantrrs/cuda-opencv:latest
# - image: nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
2017-10-19 06:54:17 +08:00
working_directory: ~/work
steps:
- checkout
2019-12-02 21:46:13 +08:00
- run: nvcc --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 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
2017-10-20 04:28:27 +08:00
- run: make LIBSO=1 GPU=1 CUDNN=1 OPENCV=1 -j 8
2018-04-16 22:52:03 +08:00
- run: make clean
- run: make LIBSO=1 GPU=1 CUDNN=1 OPENCV=1 CUDNN_HALF=1 -j 8