From 22c30b07656dc6d2ebdf43ee087b4c8a5df7393b Mon Sep 17 00:00:00 2001 From: Lucas DELANIER Date: Wed, 8 Mar 2023 00:59:54 +0100 Subject: [PATCH] Ajouter '.drone.yml' --- .drone.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c92527e --- /dev/null +++ b/.drone.yml @@ -0,0 +1,27 @@ +kind: pipeline +type: docker +name: MovieFinderPipeline + + +trigger: + event: + - push + +steps: +# build CONTAINER for sonar on cirrusci IMAGE +- name: code-analysis + image: itporbit/react-native-android:latest + environment: + SONAR_TOKEN: + from_secret: sonar_token + settings: + sources: . + commands: + - export SONAR_SCANNER_VERSION=4.7.0.2747 + - export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux + - curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip + - unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/ + - export PATH=$SONAR_SCANNER_HOME/bin:$PATH + - export SONAR_SCANNER_OPTS="-server" + - sonar-scanner -D sonar.projectKey=MovieFinder -D sonar.sources=. -D sonar.host.url=https://codefirst.iut.uca.fr/sonar + depends_on: [ app-build ] \ No newline at end of file