Mise à jour de '.drone.yml'
continuous-integration/drone/push Build is failing Details

clean_web
David D'ALMEIDA 1 year ago
parent ae8f2df270
commit 046b921113

@ -1,23 +1,21 @@
kind: pipeline kind: pipeline
type: docker type: docker
name: HeartTrack name: HeartWave
trigger: trigger:
branch:
- master
- merged
event: event:
- push - push
steps: steps:
# Test ✔️ # Test ✔️
- name: test - name: test
image: composer:2.6 image: composer:2.6
commands: commands:
- cd Sources - cd Sources
- rm -r vendor
- rm composer.lock
# Installe les dépendances PHP si nécessaire # Installe les dépendances PHP si nécessaire
- composer install --no-interaction - php composer.phar install --no-interaction
- ./vendor/bin/phpunit tests - ./vendor/bin/phpunit tests
# Sonar static code analisis deployment # Sonar static code analisis deployment
@ -38,20 +36,45 @@ steps:
- cd Sources - cd Sources
- sonar-scanner -D sonar.projectKey=HeartTrack -D sonar.host.url=https://codefirst.iut.uca.fr/sonar - sonar-scanner -D sonar.projectKey=HeartTrack -D sonar.host.url=https://codefirst.iut.uca.fr/sonar
depends_on: [ test ] depends_on: [ test ]
# build image and push on the registry ✔️
- name: rewrite-urls
image: 'busybox:latest'
commands:
- cd Sources
- ls
- >-
find . -type f -exec sed -i -r
"s@(href|src)=\"/@\1=\"$${PLUGIN_CONTAINER_PATH}@g" {} +
settings:
container_path: https://codefirst.iut.uca.fr/containers/HeartDev-web/
# build image and push on the registry ✔️
- name: docker-build-and-push - name: docker-build-and-push
image: plugins/docker image: plugins/docker
settings: settings:
commands: ls
dockerfile: Sources/config/Dockerfile dockerfile: Sources/config/Dockerfile
context: Sources context: Sources
registry: hub.codefirst.iut.uca.fr registry: hub.codefirst.iut.uca.fr
repo: hub.codefirst.iut.uca.fr/david.d_almeida/web repo: hub.codefirst.iut.uca.fr/david.d_almeida/web
mirror: https://proxy.iut.uca.fr:8443
username: username:
from_secret: SECRET_REGISTRY_USERNAME from_secret: SECRET_REGISTRY_USERNAME
password: password:
from_secret: SECRET_REGISTRY_PASSWORD from_secret: SECRET_REGISTRY_PASSWORD
git_auth: true depends_on:
- rewrite-urls
- name: deploy-container
image: >-
hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
environment:
IMAGENAME: 'hub.codefirst.iut.uca.fr/david.d_almeida/web:latest'
CONTAINERNAME: web
COMMAND: create
OVERWRITE: true
ADMINS: david.d_almeida
depends_on:
- docker-build-and-push
- name: notify - name: notify
image: ruby:2.1 image: ruby:2.1

Loading…
Cancel
Save