forked from clement.freville2/drone-health
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.
50 lines
1.5 KiB
50 lines
1.5 KiB
kind: pipeline
|
|
type: docker
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: sonar
|
|
image: sonarsource/sonar-scanner-cli:5
|
|
commands:
|
|
- sonar-scanner -Dsonar.projectKey=drone-health-clfreville2 -Dsonar.sources=. -Dsonar.login=$${PLUGIN_SONAR_TOKEN} -Dsonar.host.url=$${PLUGIN_SONAR_HOST} -Dsonar.php.coverage.reportPaths=coverage.xml
|
|
settings:
|
|
sonar_host:
|
|
from_secret: sonar_host
|
|
sonar_token:
|
|
from_secret: sonar_token
|
|
|
|
- name: rewrite-urls
|
|
image: busybox:latest
|
|
commands:
|
|
- find . -type f -exec sed -i "s|\"/|\"$${PLUGIN_CONTAINER_PATH}|g" {} +
|
|
settings:
|
|
container_path: /containers/clementfreville2-drone-health/
|
|
|
|
- name: docker-build-and-push
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: docker/Dockerfile
|
|
context: .
|
|
registry: hub.codefirst.iut.uca.fr
|
|
repo: hub.codefirst.iut.uca.fr/clement.freville2/drone-health
|
|
username:
|
|
from_secret: SECRET_REGISTRY_USERNAME
|
|
password:
|
|
from_secret: SECRET_REGISTRY_PASSWORD
|
|
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/clement.freville2/drone-health:latest
|
|
CONTAINERNAME: drone-health
|
|
COMMAND: create
|
|
OVERWRITE: true
|
|
CODEFIRST_CLIENTDRONE_ENV_CONTAINER_PATH: clement.freville2-drone-health/
|
|
depends_on:
|
|
- docker-build-and-push
|