|
|
|
@ -18,3 +18,38 @@ steps:
|
|
|
|
|
commands:
|
|
|
|
|
- vendor/bin/phpunit --filter "/(testCallWebService)( .*)?$/" ./common/Tests/WS_UtilTest.php
|
|
|
|
|
- vendor/bin/phpunit --filter "/(testAllKeysToUppercase)( .*)?$/" ./common/Tests/WS_UtilTest.php
|
|
|
|
|
depends_on:
|
|
|
|
|
- Setup
|
|
|
|
|
|
|
|
|
|
- name: hadolint
|
|
|
|
|
image: hadolint/hadolint:latest-alpine
|
|
|
|
|
commands:
|
|
|
|
|
- hadolint Dockerfile
|
|
|
|
|
depends_on:
|
|
|
|
|
- test
|
|
|
|
|
|
|
|
|
|
- name: bluid-docker-image
|
|
|
|
|
image: plugins/docker
|
|
|
|
|
settings:
|
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
|
registry: hub.codefirst.iut.uca.fr
|
|
|
|
|
repo: hub.codefirst.iut.uca.fr/louis.dufour/CICD_WebPage
|
|
|
|
|
username:
|
|
|
|
|
from_secret: SECRET_REGISTRY_USERNAME
|
|
|
|
|
password:
|
|
|
|
|
from_secret: SECRET_REGISTRY_PASSWORD
|
|
|
|
|
depends_on:
|
|
|
|
|
- hadolint
|
|
|
|
|
|
|
|
|
|
- name: deploy-container
|
|
|
|
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
|
|
|
|
environment:
|
|
|
|
|
IMAGENAME: hub.codefirst.iut.uca.fr/louis.dufour/CICD_WebPage:latest
|
|
|
|
|
CONTAINERNAME: phpContainerLouis
|
|
|
|
|
COMMAND: create
|
|
|
|
|
OVERWRITE: true
|
|
|
|
|
CODEFIRST_CLIENTDRONE_ENV_CONTAINER_PATH: louis.dufour-php
|
|
|
|
|
CODEFIRST_CLIENTDRONE_ENV_LIBRARY_URL: https://codefirst.iut.uca.fr/containers/louis.dufour-php
|
|
|
|
|
CODEFIRST_CLIENTDRONE_ENV_BACKEND_URL: https://codefirst.iut.uca.fr/containers/louis.dufour-php
|
|
|
|
|
depends_on:
|
|
|
|
|
- docker-build-and-push
|
|
|
|
|