From 532986d6b4cc70f20c0388becbb3d9ec1475ced4 Mon Sep 17 00:00:00 2001 From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl> Date: Mon, 27 Mar 2017 11:59:26 +0200 Subject: [PATCH] chdirs make more sense now :) --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86aec18..71b55ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,12 +17,15 @@ build_czr_pythons: - cp SkeletonVagrantfile czr_pythons/Vagrantfile - cd czr_pythons - python ../make.py meta + - cd .. script: + - cd czr_pythons - vagrant up - vagrant package --out czr_pythons.box - mv -f czr_pythons.box /var/www/html/dev/vagrant/czr_pythons.box - cd .. after_script: + - cd czr_pythons - vagrant destroy -f - cd .. @@ -44,12 +47,15 @@ build_czr_pythons_pg: - cp SkeletonVagrantfile czr_pythons_pg/Vagrantfile - cd czr_pythons_pg - python ../make.py meta + - cd .. script: + - cd czr_pythons_pg - vagrant up - vagrant package --out czr_pythons_pg.box - mv -f czr_pythons_pg.box /var/www/html/dev/vagrant/czr_pythons_pg.box - cd .. after_script: + - cd czr_pythons_pg - vagrant destroy -f - cd .. @@ -71,12 +77,15 @@ build_nodejs4: - cp SkeletonVagrantfile nodejs4/Vagrantfile - cd nodejs4 - python ../make.py meta + - cd .. script: + - cd nodejs4 - vagrant up - vagrant package --out nodejs4.box - mv -f nodejs4.box /var/www/html/dev/vagrant/nodejs4.box - cd .. after_script: + - cd nodejs4 - vagrant destroy -f - cd .. @@ -98,11 +107,14 @@ build_nodejs5_jdk_adk25: - cp SkeletonVagrantfile nodejs5_jdk_adk25/Vagrantfile - cd nodejs5_jdk_adk25 - python ../make.py meta + - cd .. script: + - cd nodejs5_jdk_adk25 - vagrant up - vagrant package --out nodejs5_jdk_adk25.box - mv -f nodejs5_jdk_adk25.box /var/www/html/dev/vagrant/nodejs5_jdk_adk25.box - cd .. after_script: + - cd nodejs5_jdk_adk25 - vagrant destroy -f - cd .. -- GitLab