From ee870c2f61aa9fb481dfd1aa6d6205e613e49718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Sat, 13 Mar 2021 00:01:47 +0100 Subject: [PATCH] Add Flink deploy jobs --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aaef44bad..d4717f1aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -124,30 +124,54 @@ spotbugs-benchmarks: when: manual allow_failure: true -deploy-uc1-kstreams-app: +deploy-uc1-kstreams: extends: .deploy-benchmarks variables: IMAGE_NAME: "theodolite-uc1-kstreams-app" JAVA_PROJECT_NAME: "uc1-application" -deploy-uc2-kstreams-app: +deploy-uc2-kstreams: extends: .deploy-benchmarks variables: IMAGE_NAME: "theodolite-uc2-kstreams-app" JAVA_PROJECT_NAME: "uc2-application" -deploy-uc3-kstreams-app: +deploy-uc3-kstreams: extends: .deploy-benchmarks variables: IMAGE_NAME: "theodolite-uc3-kstreams-app" JAVA_PROJECT_NAME: "uc3-application" -deploy-uc4-kstreams-app: +deploy-uc4-kstreams: extends: .deploy-benchmarks variables: IMAGE_NAME: "theodolite-uc4-kstreams-app" JAVA_PROJECT_NAME: "uc4-application" +deploy-uc1-flink: + extends: .deploy-benchmarks + variables: + IMAGE_NAME: "theodolite-uc1-flink" + JAVA_PROJECT_NAME: "uc1-application-flink" + +deploy-uc2-flink: + extends: .deploy-benchmarks + variables: + IMAGE_NAME: "theodolite-uc2-flink" + JAVA_PROJECT_NAME: "uc2-application-flink" + +deploy-uc3-flink: + extends: .deploy-benchmarks + variables: + IMAGE_NAME: "theodolite-uc3-flink" + JAVA_PROJECT_NAME: "uc3-application-flink" + +deploy-uc4-flink: + extends: .deploy-benchmarks + variables: + IMAGE_NAME: "theodolite-uc4-flink" + JAVA_PROJECT_NAME: "uc4-application-flink" + deploy-uc1-load-generator: extends: .deploy-benchmarks variables: -- GitLab