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

WIP: pipeline

parent e7f2d6e3
No related branches found
No related tags found
1 merge request!4Documentation
Pipeline #13777 passed
Pipeline: caosdb-octaveinttest

#13778

    ...@@ -27,6 +27,7 @@ variables: ...@@ -27,6 +27,7 @@ variables:
    CPPLIB_BRANCH: f-cpp-to-string CPPLIB_BRANCH: f-cpp-to-string
    OCTAVEINTTEST_PIPELINE: https://gitlab.indiscale.com/api/v4/projects/121/trigger/pipeline OCTAVEINTTEST_PIPELINE: https://gitlab.indiscale.com/api/v4/projects/121/trigger/pipeline
    OCTAVEINTTEST_BRANCHES: https://gitlab.indiscale.com/api/v4/projects/121/repository/branches
    image: $OCTAVE_REGISTRY_IMAGE image: $OCTAVE_REGISTRY_IMAGE
    ...@@ -104,7 +105,11 @@ trigger_inttest: ...@@ -104,7 +105,11 @@ trigger_inttest:
    ## Determine the octaveinttest branch... ## Determine the octaveinttest branch...
    # ... sync'ed f-branch (f-bar on octavelib requires f-bar on octaveinttest)... # ... sync'ed f-branch (f-bar on octavelib requires f-bar on octaveinttest)...
    - if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then - if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then
    if curl -o /dev/null -s -w "%{http_code}" $OCTAVEINTTEST_BRANCHES/$CI_COMMIT_REF_NAME | grep "404"; then
    OCTAVEINT_REF=dev ;
    else
    OCTAVEINT_REF=$CI_COMMIT_REF_NAME ; OCTAVEINT_REF=$CI_COMMIT_REF_NAME ;
    fi
    fi; fi;
    # ... or use main if possible... # ... or use main if possible...
    - if [[ "$CI_COMMIT_REF_NAME" == "main" ]] ; then - if [[ "$CI_COMMIT_REF_NAME" == "main" ]] ; then
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment