From c0bc3cce71ea95e423ff4dbea7d9f320d6aab16a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MIELCAREK?= Date: Sat, 29 Oct 2022 16:06:41 +0200 Subject: [PATCH] Update '.drone.yml' --- .drone.yml | 37 +++++++++---------------------------- 1 file changed, 9 insertions(+), 28 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2f691c2..49ac325 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,13 +2,19 @@ kind: pipeline type: docker name: DAFLPipeline +trigger: + event: + - push + steps: +# build CONTAINER for app-build on cirrusci IMAGE - name: app-build image: cirrusci/flutter:stable commands: - flutter doctor - - flutter build - + - flutter build ./Sources/dafl_project_flutter + +# build CONTAINER for sonar on cirrusci IMAGE - name: code-analysis image: cirrusci/flutter:stable environment: @@ -24,29 +30,4 @@ steps: - export PATH=$SONAR_SCANNER_HOME/bin:$PATH - export SONAR_SCANNER_OPTS="-server" - sonar-scanner -D sonar.projectKey=DAFLMusic -D sonar.sources=. -D sonar.host.url=https://codefirst.iut.uca.fr/sonar - depends_on: [ app-build ] - -- name: web-server - image: plugins/docker - settings: - dockerfile: Sources/Dockerfile - context: Sources/ - registry: hub.codefirst.iut.uca.fr - repo: hub.codefirst.iut.uca.fr/felix.mielcarek/dafl_music - username: - from_secret: secret-registry-username - password: - from_secret: secret-registry-password - -- name: deploy-container - image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest - environment: - IMAGENAME: hub.codefirst.iut.uca.fr/felix.mielcarek/dafl_music:latest - CONTAINERNAME: dafl-container - COMMAND: create - OVERWRITE: true - username: - from_secret: secret-registry-username - password: - from_secret: secret-registry-password - depends_on: [ web-server ] \ No newline at end of file + depends_on: [ app-build ] \ No newline at end of file