Commit f6da3f40 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

[FIX] Correction du .gitlab-ci.yml pour utiliser une image Docker python suffisante.

parent 3bc122ed
Loading
Loading
Loading
Loading
Loading
+3 −18
Original line number Diff line number Diff line
image: registre.unicaen.fr:5000/unicaen-dev-php7.3-apache

stages:
  - publish
- tests

cache:
  key: ${CI_COMMIT_REF_SLUG}
  paths:
  - vendor/

#unit-tests:
#  stage: tests
#  script:
#    - composer install --no-interaction --no-suggest --no-progress
#    - php vendor/bin/phpunit --coverage-text=coverage.txt --colors=never
#  artifacts:
#    paths:
#      - coverage.txt

update-satis:
  stage: publish
  image: python:3.9
  script:
    - apt-get update && apt-get -y upgrade && apt-get -y install curl
    - curl https://gest.unicaen.fr/packagist/update
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ CHANGELOG
- GetIdStrategy : stratégie pour extraire le·s id·s du·des objet·s transmis par un hydrateur ;
  utilisable dans un hydrateur héritant de DoctrineObject, associée à un élément de formulaire mappé à une relation to-one ou to-many d'une entité Doctrine.
- Suppression des doc au format dokuwiki.
- [FIX] Correction du .gitlab-ci.yml pour utiliser une image Docker python suffisante.

6.1.7
-----