Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_backend_opencv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_backend_opencv
Merge requests
!18
v0.1.3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
v0.1.3
dev
into
main
Overview
0
Commits
34
Pipelines
4
Changes
17
Merged
Maxence Naud
requested to merge
dev
into
main
7 months ago
Overview
0
Commits
34
Pipelines
4
Changes
17
Expand
0
0
Merge request reports
Compare
main
version 2
b95d7442
7 months ago
version 1
9c9b2393
7 months ago
main (base)
and
latest version
latest version
45728a6a
34 commits,
7 months ago
version 2
b95d7442
36 commits,
7 months ago
version 1
9c9b2393
35 commits,
7 months ago
17 files
+
308
−
475
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/_global.gitlab-ci.yml deleted
100644 → 0
+
0
−
24
Options
################################################################################
# Centralized definitions of common job parameter values. #
# Parameters with many optional configurations may be in separate files. #
# #
################################################################################
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
OMP_NUM_THREADS
:
4
GIT_SSL_NO_VERIFY
:
1
DEBIAN_FRONTEND
:
noninteractive
# See https://docs.gitlab.com/ee/ci/yaml/workflow.html#switch-between-branch-pipelines-and-merge-request-pipelines
workflow
:
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event"
-
if
:
$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
when
:
never
-
if
:
$CI_COMMIT_BRANCH
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 libopencv-dev
Loading