Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-proto
Commits
cc5a424f
Verified
Commit
cc5a424f
authored
3 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
WIP: pipeline
parent
84fd951b
No related branches found
No related tags found
No related merge requests found
Pipeline
#8062
passed
3 years ago
Stage: testgo
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+5
-1
5 additions, 1 deletion
.gitlab-ci.yml
doc/CMakeLists.txt
+4
-4
4 additions, 4 deletions
doc/CMakeLists.txt
with
9 additions
and
5 deletions
.gitlab-ci.yml
+
5
−
1
View file @
cc5a424f
...
@@ -44,7 +44,7 @@ build-testenv:
...
@@ -44,7 +44,7 @@ build-testenv:
image
:
docker:20.10
image
:
docker:20.10
only
:
only
:
-
web
-
web
-
schedul
E
-
schedul
e
stage
:
setup
stage
:
setup
script
:
script
:
-
docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
-
docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
...
@@ -61,6 +61,8 @@ build-testenv:
...
@@ -61,6 +61,8 @@ build-testenv:
code_style
:
code_style
:
tags
:
[
docker
]
tags
:
[
docker
]
stage
:
test
stage
:
test
only
:
-
web
script
:
script
:
-
clang-format-11 --dry-run --verbose --Werror $(find ./proto -type f -iname "*.proto")
-
clang-format-11 --dry-run --verbose --Werror $(find ./proto -type f -iname "*.proto")
allow_failure
:
true
allow_failure
:
true
...
@@ -69,6 +71,8 @@ code_style:
...
@@ -69,6 +71,8 @@ code_style:
linting
:
linting
:
tags
:
[
docker
]
tags
:
[
docker
]
stage
:
test
stage
:
test
only
:
-
web
script
:
script
:
-
buf lint
-
buf lint
...
...
This diff is collapsed.
Click to expand it.
doc/CMakeLists.txt
+
4
−
4
View file @
cc5a424f
...
@@ -22,11 +22,11 @@ find_program(SPHINX_CMD sphinx-build)
...
@@ -22,11 +22,11 @@ find_program(SPHINX_CMD sphinx-build)
find_program
(
PROTOC_CMD protoc
)
find_program
(
PROTOC_CMD protoc
)
find_program
(
PROTOC_GEN_DOC_PLUGIN protoc-gen-doc
)
find_program
(
PROTOC_GEN_DOC_PLUGIN protoc-gen-doc
)
if
(
NOT PROTOC_CMD
)
if
(
NOT PROTOC_CMD
)
message
(
FATAL
"Protoc compiler needs to be installed to generate the documentation"
)
message
(
FATAL
_ERROR
"Protoc compiler needs to be installed to generate the documentation"
)
elseif
(
NOT PROTOC_GEN_DOC_PLUGIN
)
elseif
(
NOT PROTOC_GEN_DOC_PLUGIN
)
message
(
FATAL
"Proto-gen-doc plugin needs to be installed to generate the documentation"
)
message
(
FATAL
_ERROR
"Proto-gen-doc plugin needs to be installed to generate the documentation"
)
elseif
(
NOT SPHINX_CMD
)
elseif
(
NOT SPHINX_CMD
)
message
(
FATAL
"Sphinx needs to be installed to generate the documentation"
)
message
(
FATAL
_ERROR
"Sphinx needs to be installed to generate the documentation"
)
else
()
else
()
# Copy sources to build directory
# Copy sources to build directory
add_custom_target
(
doc-copy-sources
add_custom_target
(
doc-copy-sources
...
@@ -43,7 +43,7 @@ else ()
...
@@ -43,7 +43,7 @@ else ()
add_custom_target
(
doc-scalar-value-types
add_custom_target
(
doc-scalar-value-types
COMMAND
${
PROTOC_CMD
}
COMMAND
${
PROTOC_CMD
}
--doc_out=
${
CMAKE_CURRENT_BINARY_DIR
}
_build/
--doc_out=
${
CMAKE_CURRENT_BINARY_DIR
}
_build/
--doc_opt=
${
CMAKE_CURRENT_
BINARY_DIR
}
_build
/scalar-value-types.rst.tmpl,scalar-value-types.rst
--doc_opt=
${
CMAKE_CURRENT_
SOURCE_DIR
}
/scalar-value-types.rst.tmpl,scalar-value-types.rst
${
PACKAGE_DIR
}
/main.proto
${
PACKAGE_DIR
}
/main.proto
WORKING_DIRECTORY
${
PROJECT_SOURCE_DIR
}
/proto/
WORKING_DIRECTORY
${
PROJECT_SOURCE_DIR
}
/proto/
COMMENT
"Generating API documentation for protobuf's native scalar value types."
COMMENT
"Generating API documentation for protobuf's native scalar value types."
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment