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

WIP: pipeline

parent 924a62a6
No related branches found
No related tags found
No related merge requests found
Pipeline #8226 failed
......@@ -22,6 +22,8 @@
variables:
CI_REGISTRY_IMAGE: $CI_REGISTRY/caosdb/src/caosdb-cpplib/testenv:latest
CPP_INT_TEST_REPO: https://gitlab.indiscale.com/api/v4/projects/111/trigger/pipeline
INT_TEST_REPO: $CPP_INT_TEST_REPO
GIT_SUBMODULE_STRATEGY: normal
image: $CI_REGISTRY_IMAGE
......@@ -66,6 +68,26 @@ test:
- cmake --build .
- cmake --build . --target unit_test_coverage
# trigger the integration tests
trigger_inttest:
tags: [ docker ]
stage: deploy
dependencies:
- setup
script:
- CPPINT_REF=main
- TRIGGERED_BY_REPO=${TRIGGERED_BY_REPO:-CPPLIB}
- TRIGGERED_BY_REF=${TRIGGERED_BY_REF:-$CI_COMMIT_REF_NAME}
- TRIGGERED_BY_HASH=${TRIGGERED_BY_HASH:-$CI_COMMIT_SHORT_SHA}
- /usr/bin/curl -w "%{stderr}HTTPCODE=%{http_code}" -X POST
-F token=$CI_JOB_TOKEN
-F "variables[TRIGGERED_BY_REPO]=$TRIGGERED_BY_REPO"
-F "variables[TRIGGERED_BY_REF]=$TRIGGERED_BY_REF"
-F "variables[TRIGGERED_BY_HASH]=$TRIGGERED_BY_HASH"
-F ref=${CPPINT_REF} $INT_TEST_REPO 2>HTTPCODE
- grep -c "HTTPCODE=2" HTTPCODE
# Build the sphinx documentation and make it ready for deployment by Gitlab Pages
# Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
pages_prepare: &pages_prepare
......
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