You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/.gitlab-ci.yml

32 rivejä
549 B
YAML

7 vuotta sitten
image: tetraweb/php
7 vuotta sitten
stages:
- test
- deploy
7 vuotta sitten
before_script:
7 vuotta sitten
- apt-get update
- apt-get install zip unzip
7 vuotta sitten
- cd api
7 vuotta sitten
- php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
- php composer-setup.php
- php -r "unlink('composer-setup.php');"
7 vuotta sitten
- php composer.phar update
7 vuotta sitten
test:
stage: test
script:
7 vuotta sitten
- composer install
- cd Tests
7 vuotta sitten
- phpunit
7 vuotta sitten
deploy:
when: manual
7 vuotta sitten
stage: deploy
script:
7 vuotta sitten
- composer install --no-dev
7 vuotta sitten
- cd ../ci
- bash build_zip.sh
artifacts:
paths:
- release.zip