2018-09-21 21:00:42 +00:00
|
|
|
image: framasoft/vuefs:latest
|
2018-02-28 15:33:36 +00:00
|
|
|
stages:
|
2019-09-26 20:11:50 +00:00
|
|
|
- test
|
2018-02-28 15:52:25 +00:00
|
|
|
- deploy
|
2018-02-28 15:33:36 +00:00
|
|
|
|
2019-09-26 20:11:50 +00:00
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- npm install -g yaml-lint
|
|
|
|
- for f in $(find ./app/ -name "*.yml" -type f);do yamllint $f;done;
|
|
|
|
|
2018-09-21 21:00:42 +00:00
|
|
|
pages:
|
|
|
|
stage: deploy
|
2018-02-28 15:33:36 +00:00
|
|
|
script:
|
2019-09-09 12:58:52 +00:00
|
|
|
- yarn install --pure-lockfile
|
2019-09-11 13:26:44 +00:00
|
|
|
- npm run build
|
2019-09-12 07:20:18 +00:00
|
|
|
- rm -r public/ && mv dist/ public/
|
2018-09-21 21:00:42 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-09-12 07:20:18 +00:00
|
|
|
- public
|
2018-09-21 21:00:42 +00:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- node_modules/
|
2018-02-28 15:33:36 +00:00
|
|
|
|
2019-09-09 12:58:52 +00:00
|
|
|
#production:
|
|
|
|
#stage: deploy
|
|
|
|
#script:
|
|
|
|
#- npm install
|
|
|
|
#- npm run prod
|
|
|
|
#- cp ./public/fr/index.html ./public/index.html
|
|
|
|
#- for f in $(find -type l);do cp --remove-destination $(readlink -f $f) $f;done;
|
|
|
|
#- mkdir "${HOME}/.ssh"
|
|
|
|
#- chmod 700 "${HOME}/.ssh"
|
2019-11-08 13:11:58 +00:00
|
|
|
#- echo -e "${DEPLOYEMENT_KNOWN_HOSTS}" > ${HOME}/.ssh/known_hosts;
|
2019-09-09 12:58:52 +00:00
|
|
|
#- eval `ssh-agent -s`
|
2019-11-08 13:11:58 +00:00
|
|
|
#- ssh-add <(echo "${DEPLOYEMENT_KEY}" | base64 --decode -i);
|
|
|
|
#- cd public && echo "put -r ." | sftp ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web;
|
2019-09-09 12:58:52 +00:00
|
|
|
#only:
|
2019-11-08 13:11:58 +00:00
|
|
|
#refs:
|
2019-09-09 12:58:52 +00:00
|
|
|
#- master
|
2019-11-08 13:11:58 +00:00
|
|
|
#variables:
|
|
|
|
#- $DEPLOYEMENT_KEY
|
|
|
|
#- $DEPLOYEMENT_KNOWN_HOSTS
|
|
|
|
#- $DEPLOYEMENT_USER
|
|
|
|
#- $DEPLOYEMENT_HOST
|
2018-02-28 15:55:41 +00:00
|
|
|
|