Skip to content
Snippets Groups Projects
Verified Commit cc5a424f authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: pipeline

parent 84fd951b
No related branches found
No related tags found
No related merge requests found
Pipeline #8062 passed
...@@ -44,7 +44,7 @@ build-testenv: ...@@ -44,7 +44,7 @@ build-testenv:
image: docker:20.10 image: docker:20.10
only: only:
- web - web
- schedulE - schedule
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
......
...@@ -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."
......
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