Skip to content
Snippets Groups Projects
Commit 5047c477 authored by florian's avatar florian
Browse files

DRAFT: Pipeline

parent 4ca9e3a2
No related branches found
No related tags found
1 merge request!5ENH: Check OS and choose library name accordingly
Pipeline #10880 passed
Pipeline: CaosDB Julia Integration Tests

#10882

    This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
    ......@@ -159,7 +159,11 @@ trigger_inttest:
    ## Determine the juliainttest branch...
    # ... use an f-branch if posible...
    - if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then
    JULIAINT_REF=$CI_COMMIT_REF_NAME ;
    if curl -o /dev/null -s -w "%{http_code}" $JULIAINTTEST_BRANCHES/$CI_COMMIT_REF_NAME | grep "404"; then
    JULIAINT_REF=dev ;
    else
    JULIAINT_REF=$CI_COMMIT_REF_NAME;
    fi
    fi;
    # ... or use main if possible...
    - if [[ "$CI_COMMIT_REF_NAME" == "main" ]] ; then
    ......
    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