Skip to content
Snippets Groups Projects
Commit c25ac5a3 authored by Thibault Allenet's avatar Thibault Allenet
Browse files

Fix CI to install Opencv

parent 30c51285
No related branches found
No related tags found
3 merge requests!7[Upd] Code rework,!6Add CI for backend opencv,!3Update master to v0.1.0
Pipeline #37425 canceled
......@@ -21,4 +21,14 @@ default:
image: nvidia/cuda:12.2.0-devel-ubuntu22.04
before_script:
- apt update
- apt install -y cmake cppcheck python-is-python3 pip git gcovr unzip curl
- apt install -y cmake cppcheck python-is-python3 pip git gcovr unzip curl wget g++
# Install OpenCV
# Download and unpack sources
- wget -O opencv.zip https://github.com/opencv/opencv/archive/4.x.zip
- unzip opencv.zip
# Create build directory
- mkdir -p build && cd build
# Configure
- cmake ../opencv-4.x
# Build
- cmake --build .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment