Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Firmware
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
ACS
Public
Teaching materials
LEGOS
Firmware
Merge requests
!2
Added CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added CI
ci
into
separate_projects
Overview
0
Commits
1
Pipelines
29
Changes
1
Merged
Jonathan Klimt
requested to merge
ci
into
separate_projects
2 years ago
Overview
0
Commits
1
Pipelines
29
Changes
1
Expand
0
0
Merge request reports
Compare
separate_projects
version 28
4996c96f
2 years ago
version 27
b641cee8
2 years ago
version 26
764a8ae5
2 years ago
version 25
b8ea48ef
2 years ago
version 24
658814eb
2 years ago
version 23
79d3dd38
2 years ago
version 22
47bf3de5
2 years ago
version 21
9ee51e76
2 years ago
version 20
7b3756ef
2 years ago
version 19
b722b5c8
2 years ago
version 18
a8d13eb2
2 years ago
version 17
7b3d7869
2 years ago
version 16
794e2cb8
2 years ago
version 15
2db0f53b
2 years ago
version 14
71f4c557
2 years ago
version 13
ede5fa56
2 years ago
version 12
da169f46
2 years ago
version 11
2dab028a
2 years ago
version 10
f3370ee3
2 years ago
version 9
7c8a1d2c
2 years ago
version 8
76209ff4
2 years ago
version 7
f706c8e9
2 years ago
version 6
c4475cc3
2 years ago
version 5
29e511b9
2 years ago
version 4
29e511b9
2 years ago
version 3
fdd2927e
2 years ago
version 2
98db7b38
2 years ago
version 1
327b8cf2
2 years ago
separate_projects (base)
and
latest version
latest version
2f283eb6
1 commit,
2 years ago
version 28
4996c96f
1 commit,
2 years ago
version 27
b641cee8
1 commit,
2 years ago
version 26
764a8ae5
1 commit,
2 years ago
version 25
b8ea48ef
1 commit,
2 years ago
version 24
658814eb
1 commit,
2 years ago
version 23
79d3dd38
2 commits,
2 years ago
version 22
47bf3de5
1 commit,
2 years ago
version 21
9ee51e76
1 commit,
2 years ago
version 20
7b3756ef
1 commit,
2 years ago
version 19
b722b5c8
1 commit,
2 years ago
version 18
a8d13eb2
1 commit,
2 years ago
version 17
7b3d7869
1 commit,
2 years ago
version 16
794e2cb8
1 commit,
2 years ago
version 15
2db0f53b
1 commit,
2 years ago
version 14
71f4c557
1 commit,
2 years ago
version 13
ede5fa56
1 commit,
2 years ago
version 12
da169f46
1 commit,
2 years ago
version 11
2dab028a
1 commit,
2 years ago
version 10
f3370ee3
1 commit,
2 years ago
version 9
7c8a1d2c
1 commit,
2 years ago
version 8
76209ff4
1 commit,
2 years ago
version 7
f706c8e9
1 commit,
2 years ago
version 6
c4475cc3
1 commit,
2 years ago
version 5
29e511b9
3 commits,
2 years ago
version 4
29e511b9
1 commit,
2 years ago
version 3
fdd2927e
1 commit,
2 years ago
version 2
98db7b38
1 commit,
2 years ago
version 1
327b8cf2
1 commit,
2 years ago
1 file
+
42
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
42
−
0
Options
variables
:
GIT_CLEAN_FLAGS
:
none
CMAKE_CXX_FLAGS
:
"
-Werror"
CMAKE_C_FLAGS
:
"
-Werror"
stages
:
-
build-entities
-
checks
default
:
image
:
espressif/idf:release-v4.4
build-entities
:
stage
:
build-entities
script
:
-
cd $ENTITY
-
echo $TERM
-
pwd
-
idf.py build
parallel
:
matrix
:
-
ENTITY
:
branch
-
ENTITY
:
data_center
-
ENTITY
:
ec_station
-
ENTITY
:
factory
-
ENTITY
:
hospital
-
ENTITY
:
house
-
ENTITY
:
power_plant
-
ENTITY
:
skyscraper
-
ENTITY
:
solar_farm
-
ENTITY
:
stadium
-
ENTITY
:
substation
-
ENTITY
:
supermarket
-
ENTITY
:
wind_farm
fmt
:
image
:
xianpengshen/clang-tools:13
stage
:
checks
script
:
-
find \( -name \*.c -o -name \*.h \) ! -path ".git" ! -path '*/build/*' -print0 | xargs -0 -n 1 clang-format --Werror -n -fcolor-diagnostics
needs
:
[]
allow_failure
:
true
Loading