parent
e370f99139
commit
6180b6c762
@ -0,0 +1,31 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: Passworld
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build-apk
|
||||||
|
image: cirrusci/flutter:stable
|
||||||
|
commands:
|
||||||
|
- flutter build apk
|
||||||
|
|
||||||
|
- name: code-analysis
|
||||||
|
image: cirrusci/flutter:stable
|
||||||
|
environment:
|
||||||
|
SONAR_TOKEN:
|
||||||
|
from_secret: sonar_token
|
||||||
|
commands:
|
||||||
|
- export SONAR_SCANNER_VERSION=4.7.0.2747
|
||||||
|
- mkdir .sonar
|
||||||
|
- cd .sonar
|
||||||
|
- curl -V
|
||||||
|
- wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
|
||||||
|
- unzip -o sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
|
||||||
|
- cd sonar-scanner-$SONAR_SCANNER_VERSION-linux/
|
||||||
|
- cd ../..
|
||||||
|
- export SONAR_SCANNER_OPTS="-server"
|
||||||
|
- ./.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux/bin/sonar-scanner -D sonar.projectKey=SmartFit_Mobile -D sonar.host.url=https://codefirst.iut.uca.fr/sonar -D sonar.login=$${SONAR_TOKEN}
|
||||||
|
depends_on: [ build-apk ]
|
Loading…
Reference in new issue