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

Merge branch 'split-ci' into 'main'

split python and R jobs

See merge request !20
parents e9169748 64a6b7a6
No related branches found
No related tags found
1 merge request!20split python and R jobs
Pipeline #111289 passed
Pipeline: shiny-k8s-example

#111293

    Pipeline: shiny-k8s-example

    #111291

      ......@@ -2,7 +2,7 @@ image: docker:24
      build:
      .build:
      stage: build
      before_script:
      - i=0; while [ "$i" -lt 60 ]; do docker info && break; sleep 1; i=$(( i + 1 )) ; done
      ......@@ -60,6 +60,25 @@ build:
      # push image tagged with its versions
      docker push "$CI_REGISTRY_IMAGE/${LANGUAGE}:$VERSIONS_TAG"
      fi
      build_python:
      extends: .build
      parallel:
      matrix:
      - LANGUAGE: ["python"]
      PYTHON_VERSION: [
      "3.9-slim-bullseye",
      "3.10-slim-bullseye",
      "3.11-slim-bullseye",
      ]
      SHINY_SERVER_VERSION: ["latest"]
      build_r:
      extends: .build
      parallel:
      matrix:
      - LANGUAGE: ["r"]
      ......@@ -69,19 +88,11 @@ build:
      "4.2.3",
      ]
      SHINY_SERVER_VERSION: ["latest"]
      - LANGUAGE: ["python"]
      PYTHON_VERSION: [
      "3.9-slim-bullseye",
      "3.10-slim-bullseye",
      "3.11-slim-bullseye",
      ]
      SHINY_SERVER_VERSION: ["latest"]
      trigger_r_example:
      needs: ["build"]
      needs: ["build_r"]
      trigger:
      project: hub/shiny-k8s-example
      branch: base-r
      ......@@ -89,7 +100,7 @@ trigger_r_example:
      trigger_python_example:
      needs: ["build"]
      needs: ["build_python"]
      trigger:
      project: hub/shiny-k8s-example
      branch: base-python
      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