Skip to content
Snippets Groups Projects
Commit 7302fbfb authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

Merge branch 'test-images' into 'docker-images'

test images

See merge request !27
parents 8f4f1746 7db12fc5
No related branches found
No related tags found
1 merge request!27test images
Pipeline #133487 passed
Pipeline: shiny-k8s-example

#133543

    Pipeline: shiny-k8s-example

    #133489

      Pipeline: shiny-k8s-example

      #133488

        ...@@ -79,6 +79,16 @@ variables: ...@@ -79,6 +79,16 @@ variables:
        - MD5SUM=$(echo $CSV_LINE | md5sum | head -c 32) - MD5SUM=$(echo $CSV_LINE | md5sum | head -c 32)
        - mkdir -p image-list-fragments/ - mkdir -p image-list-fragments/
        - echo $CSV_LINE > image-list-fragments/${MD5SUM}.csv - echo $CSV_LINE > image-list-fragments/${MD5SUM}.csv
        - echo "Now Testing"
        - apk add --no-cache curl
        - docker run --name ${MD5SUM} -d -u 999 -p 0.0.0.0:3838:3838 $IMAGE_PATH
        - CURL_ERR=0
        - curl --retry-all-errors --retry 10 --retry-delay 1 -s -o /dev/null 0.0.0.0:3838 || CURL_ERR=1
        - |
        if [ ${CURL_ERR} == "1" ]; then
        docker logs ${MD5SUM}
        exit 2
        fi
        artifacts: artifacts:
        when: always when: always
        paths: paths:
        ...@@ -162,8 +172,8 @@ update_docs: ...@@ -162,8 +172,8 @@ update_docs:
        - docker-images - docker-images
        needs: [] needs: []
        trigger: trigger:
        - project: hub/shiny-k8s-example project: hub/shiny-k8s-example
        branch: doc-trigger branch: doc-trigger
        ......
        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