kind: pipeline type: docker name: HeartWave trigger: event: - push steps: - name: test image: composer:2.6 commands: - cd Sources - ls # Installe les dépendances PHP si nécessaire - composer install --no-interaction - ./vendor/bin/phpunit # Sonar static code analisis deployment ✔️ - name: code-analysis image: php:8.2-alpine environment: SONAR_TOKEN: from_secret: SONAR_TOKEN settings: sources: ./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=HeartTrack -D sonar.sources=./Sources -D sonar.host.url=https://codefirst.iut.uca.fr/sonar depends_on: [ test ] # build image and push on the registry ✔️ - name: docker-build-and-push image: plugins/docker settings: username: from_secret: SECRET_REGISTRY_USERNAME password: from_secret: SECRET_REGISTRY_PASSWORD dockerfile: Sources/config/Dockerfile context: Sources registry: hub.codefirst.iut.uca.fr repo: hub.codefirst.iut.uca.fr/git/david.d_almeida/web - name: notify image: ruby:2.1 when: status: [ success ] ref: include: - refs/tags/*-demo commands: - sh ./notifymail.sh depends_on: [ docker-build-and-push ]