diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 04d15f59c4273c58aeacec1eb05947fb2182fec8..3d2590375ebd9bf805aee2612f9c54f0da2ea140 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,31 +1,31 @@ -deploy_wine: +deploy_wine-tibbo: stage: deploy tags: - vagrant - develop19216822423 script: - - vagrant box remove henrietta/wine || true - - vagrant box add henrietta/wine file:///var/www/html/dev/vagrant/wine.box -build_wine: + - vagrant box remove henrietta/wine-tibbo || true + - vagrant box add henrietta/wine-tibbo file:///var/www/html/dev/vagrant/wine-tibbo.box +build_wine-tibbo: stage: build tags: - vagrant - develop19216822423 before_script: - - cp *.sh wine/ - - cp SkeletonVagrantfile wine/Vagrantfile - - cd wine + - cp *.sh wine-tibbo/ + - cp SkeletonVagrantfile wine-tibbo/Vagrantfile + - cd wine-tibbo - python ../make.py meta script: - cd $CI_PROJECT_DIR - - cd wine + - cd wine-tibbo - vagrant up - - vagrant package --out wine.box - - mv -f wine.box /var/www/html/dev/vagrant/wine.box + - vagrant package --out wine-tibbo.box + - mv -f wine-tibbo.box /var/www/html/dev/vagrant/wine-tibbo.box - cd .. after_script: - cd $CI_PROJECT_DIR - - cd wine + - cd wine-tibbo - vagrant destroy -f - cd ..