You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: build
|
|
image: swift:latest
|
|
commands:
|
|
- cd model/Sources/model
|
|
- swift build
|
|
|
|
- name: tests_Model
|
|
image: swift:latest
|
|
commands:
|
|
- cd model/Sources/model
|
|
- swift test
|
|
depends_on: [build]
|
|
|
|
- name: code-analysis
|
|
image: aosapps/drone-sonar-plugin
|
|
commands:
|
|
export SONAR_SCANNER_VERSION=4.7.0.2747
|
|
export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-macosx
|
|
curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-macosx.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 \
|
|
-Dsonar.projectKey=Puis-sans-ce-quatre \
|
|
-Dsonar.sources=. \
|
|
-Dsonar.host.url=https://codefirst.iut.uca.fr/sonar
|
|
settings:
|
|
sonar_host: https://codefirst.iut.uca.fr/sonar
|
|
sonar_token:
|
|
from_secret: SECRET_SONAR_TOKEN
|
|
depends_on: [build]
|