Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
shared_cpp
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
monticore
EmbeddedMontiArc
simulators
shared_cpp
Merge requests
!1
add auxiliary files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add auxiliary files
add-image-matcher
into
master
Overview
5
Commits
7
Pipelines
5
Changes
3
1 unresolved thread
Hide all comments
Merged
Yuyuan Liu
requested to merge
add-image-matcher
into
master
2 years ago
Overview
5
Commits
7
Pipelines
5
Changes
3
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
master
version 5
31bae1d9
2 years ago
version 4
57a41b4b
2 years ago
version 3
caf3d88e
2 years ago
version 2
f3cdaa61
2 years ago
version 1
930083ff
2 years ago
master (base)
and
latest version
latest version
66bd9893
7 commits,
2 years ago
version 5
31bae1d9
6 commits,
2 years ago
version 4
57a41b4b
4 commits,
2 years ago
version 3
caf3d88e
3 commits,
2 years ago
version 2
f3cdaa61
2 commits,
2 years ago
version 1
930083ff
1 commit,
2 years ago
3 files
+
266
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
0 → 100644
+
30
−
0
Options
# This file is a template, and might need editing before it works on your project.
# This is a sample GitLab CI/CD configuration file that should run without any modifications.
# It demonstrates a basic 3 stage CI/CD pipeline. Instead of real tests or scripts,
# it uses echo commands to simulate the pipeline execution.
#
# A pipeline is composed of independent jobs that run scripts, grouped into stages.
# Stages run in sequential order, but jobs within stages run in parallel.
#
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
#
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
#
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml
stages
:
# List of stages for jobs, and their order of execution
-
build
build-job
:
image
:
registry.git.rwth-aachen.de/monticore/embeddedmontiarc/applications/mnistcalculator/mxnet:v0.0.5
# This job runs in the build stage, which runs first.
stage
:
build
script
:
-
echo "Checking the code syntax..."
-
g++ -c *.h
-
g++ -c *.cpp
Loading