Loading .gitlab-ci.yml +28 −28 Original line number Diff line number Diff line stages: # - test - publish # - test variables: COMPOSER_ALLOW_SUPERUSER: 1 APP_ENV: test cache: key: ${CI_COMMIT_REF_SLUG} paths: - vendor/ test: stage: test # Image unicaen avec les librairies usuelles (et Composer 2.3.x) image: registre.unicaen.fr:5000/open-source/docker/unicaen-image:php8.2 before_script: - composer install --prefer-dist --no-progress --no-interaction script: # Exécute les tests PHPUnit - mkdir -p tests/_output - ./vendor/bin/phpunit --colors=always --log-junit tests/_output/junit.xml artifacts: when: always expire_in: 1 week reports: junit: tests/_output/junit.xml #variables: # COMPOSER_ALLOW_SUPERUSER: 1 # APP_ENV: test # #cache: # key: ${CI_COMMIT_REF_SLUG} # paths: # - vendor/ # #test: # stage: test # # Image unicaen avec les librairies usuelles (et Composer 2.3.x) # image: registre.unicaen.fr:5000/open-source/docker/unicaen-image:php8.2 # # before_script: # - composer install --prefer-dist --no-progress --no-interaction # # script: # # Exécute les tests PHPUnit # - mkdir -p tests/_output # - ./vendor/bin/phpunit --colors=always --log-junit tests/_output/junit.xml # # artifacts: # when: always # expire_in: 1 week # reports: # junit: tests/_output/junit.xml # Publication de la librairie update-satis: Loading Loading
.gitlab-ci.yml +28 −28 Original line number Diff line number Diff line stages: # - test - publish # - test variables: COMPOSER_ALLOW_SUPERUSER: 1 APP_ENV: test cache: key: ${CI_COMMIT_REF_SLUG} paths: - vendor/ test: stage: test # Image unicaen avec les librairies usuelles (et Composer 2.3.x) image: registre.unicaen.fr:5000/open-source/docker/unicaen-image:php8.2 before_script: - composer install --prefer-dist --no-progress --no-interaction script: # Exécute les tests PHPUnit - mkdir -p tests/_output - ./vendor/bin/phpunit --colors=always --log-junit tests/_output/junit.xml artifacts: when: always expire_in: 1 week reports: junit: tests/_output/junit.xml #variables: # COMPOSER_ALLOW_SUPERUSER: 1 # APP_ENV: test # #cache: # key: ${CI_COMMIT_REF_SLUG} # paths: # - vendor/ # #test: # stage: test # # Image unicaen avec les librairies usuelles (et Composer 2.3.x) # image: registre.unicaen.fr:5000/open-source/docker/unicaen-image:php8.2 # # before_script: # - composer install --prefer-dist --no-progress --no-interaction # # script: # # Exécute les tests PHPUnit # - mkdir -p tests/_output # - ./vendor/bin/phpunit --colors=always --log-junit tests/_output/junit.xml # # artifacts: # when: always # expire_in: 1 week # reports: # junit: tests/_output/junit.xml # Publication de la librairie update-satis: Loading