2018-03-19 13:04:09 +01:00
image : framasoft/framadate-ci
2017-12-14 15:30:21 +01:00
stages :
2018-02-20 08:43:46 +01:00
- test
2017-12-14 15:30:21 +01:00
- deploy
2018-03-28 16:50:00 +02:00
- beta
2017-12-14 15:30:21 +01:00
- funky
2018-02-20 08:43:46 +01:00
# Run php-cs-fixer and phpunit on all branches
test :
stage : test
script :
2018-03-19 13:06:31 +01:00
- composer install -o --no-interaction --no-progress --prefer-dist
2018-02-20 08:43:46 +01:00
- mkdir tpl_c
- php vendor/bin/php-cs-fixer fix --verbose --dry-run
- vendor/bin/phpunit --bootstrap app/tests/bootstrap.php --debug app/tests
2018-02-20 08:58:49 +01:00
cache :
paths :
- vendor/
2018-02-20 08:43:46 +01:00
2018-04-05 10:46:55 +02:00
check-trad :
stage : test
allow_failure : true
script :
- if [ -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then echo "*** Unable to check if translations need to be pulled, exiting ***"; exit 1; fi
- export ORIG=$(git diff-files --shortstat)
- if [ ! -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then mkdir -p ${HOME}/.config; echo -e "${ZANATA_CONFIG_FRAMABOT}" > ${HOME}/.config/zanata.ini; fi
- if [ ! -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then make push-locales; fi
- git status > /dev/null 2>&1
- export CHANGES=$(git diff-files --shortstat)
- if [[ $CHANGES != $ORIG ]]; then echo "*** There is changes in locales ***"; echo "*** You need to do `make pull-locales` in your repo ***"; exit 1; fi
2018-04-06 11:51:08 +02:00
only :
- develop
2018-04-05 10:46:55 +02:00
2018-02-20 08:43:46 +01:00
# Create artifacts on master
pages :
stage : deploy
2017-12-14 15:30:21 +01:00
script :
- latesttag=$(git describe --tags)
- git checkout ${latesttag}
2018-03-19 13:06:31 +01:00
- composer install -o --no-interaction --no-progress --prefer-dist --no-dev
- composer dump-autoload --optimize --no-dev --classmap-authoritative
2018-02-20 08:43:46 +01:00
- mkdir tpl_c
2018-03-19 10:45:35 +01:00
- mkdir framadate
2018-03-19 11:09:12 +01:00
- mv `ls -A | grep -v framadate` ./framadate
2018-04-06 10:06:34 +02:00
- chmod -R 644 framadate/ && chmod -R 770 framadate/tpl_c/ && chmod -R 770 framadate/app/inc/
2018-03-19 10:45:35 +01:00
- zip -r latest.zip framadate
2017-12-14 15:30:21 +01:00
- mkdir .public
- cp latest.zip .public
- mv .public public
artifacts :
paths :
- public
only :
2018-04-10 21:56:01 +02:00
- tags
except :
- (beta|alpha)
2018-02-19 00:38:51 +01:00
2018-03-28 16:50:00 +02:00
# Deploy on develop
2018-03-28 16:55:04 +02:00
beta :
2018-03-28 16:50:00 +02:00
stage : beta
script :
- git checkout develop
- composer install -o --no-interaction --no-progress --prefer-dist --no-dev
- composer dump-autoload --optimize --no-dev --classmap-authoritative
2018-04-05 10:46:55 +02:00
- if [ ! -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then mkdir -p ${HOME}/.config; echo -e "${ZANATA_CONFIG_FRAMABOT}" > ${HOME}/.config/zanata.ini; fi
- if [ ! -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then make pull-locales; fi
2018-03-28 16:50:00 +02:00
- mkdir tpl_c
- mkdir .public
- cp -r * .public
2018-04-02 11:32:08 +02:00
- cp -r .git .public
2018-03-28 16:50:00 +02:00
- mv .public public
- mkdir "${HOME}/.ssh"
- chmod 700 "${HOME}/.ssh"
- if [ ! -z ${DEPLOYEMENT_KNOWN_HOSTS+x} ]; then echo -e "${DEPLOYEMENT_KNOWN_HOSTS}" > ${HOME}/.ssh/known_hosts; fi
- eval `ssh-agent -s`
- if [ ! -z ${BETA_KEY+x} ]; then ssh-add <(echo "${BETA_KEY}" | base64 --decode -i); fi
- if [ ! -z ${BETA_KEY+x} ]; then rsync -a --delete --exclude admin/.stdout.log --exclude admin/.htpasswd --exclude app/inc/config.php --exclude stats/ --exclude error/ public/ ${BETA_USER}@${DEPLOYEMENT_HOST}:../../web/; fi
only :
- develop
2018-02-20 08:43:46 +01:00
# Deploy on funky
2017-12-14 15:30:21 +01:00
funky :
stage : funky
script :
- git checkout funky
2018-03-19 13:06:31 +01:00
- composer install
2017-12-14 15:30:21 +01:00
- mkdir tpl_c
- mkdir .public
- cp -r * .public
- mv .public public
- mkdir "${HOME}/.ssh"
- chmod 700 "${HOME}/.ssh"
- if [ ! -z ${DEPLOYEMENT_KNOWN_HOSTS+x} ]; then echo -e "${DEPLOYEMENT_KNOWN_HOSTS}" > ${HOME}/.ssh/known_hosts; fi
- eval `ssh-agent -s`
- if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then ssh-add <(echo "${DEPLOYEMENT_KEY}" | base64 --decode -i); fi
2018-02-21 11:36:27 +01:00
- if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then rsync -a --delete --exclude admin/.stdout.log --exclude admin/.htpasswd --exclude app/inc/config.php --exclude stats/ --exclude error/ public/ ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web/; fi
2017-12-14 15:30:21 +01:00
only :
- funky
2018-02-28 09:43:53 +01:00
# Push new translations strings to https://trad.framasoft.org
trads :
stage : deploy
image : framasoft/push-trad:latest
script :
- if [ ! -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then mkdir -p ${HOME}/.config; echo -e "${ZANATA_CONFIG_FRAMABOT}" > ${HOME}/.config/zanata.ini; fi
- if [ ! -z ${ZANATA_CONFIG_FRAMABOT+x} ]; then make push-locales; fi
only :
- develop