From 2e1831577a0d45019c7e3cb4496e8739f4f73d88 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Wed, 26 Oct 2016 01:42:59 -0400 Subject: [PATCH] test retrieval of artifacts with gitlab --- .gitlab-ci.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 365c77ce5..4ba72179c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,8 @@ debian_stable_i386_deb: - ./tar_em_up.sh -B artifacts: paths: - - a.out + - ../*.deb + expire_in: 1 week debian_stable_amd64_deb: tags: @@ -25,6 +26,11 @@ debian_stable_amd64_deb: - echo `pwd` - cd l2ork_addons - ./tar_em_up.sh -B + artifacts: + paths: + - ../*.deb + expire_in: 1 week + ubuntu_14.04_i386_deb: tags: @@ -35,6 +41,11 @@ ubuntu_14.04_i386_deb: - echo `pwd` - cd l2ork_addons - ./tar_em_up.sh -B + artifacts: + paths: + - ../*.deb + expire_in: 1 week + ubuntu_14.04_amd64_deb: tags: @@ -45,6 +56,10 @@ ubuntu_14.04_amd64_deb: - echo `pwd` - cd l2ork_addons - ./tar_em_up.sh -B + artifacts: + paths: + - ../*.deb + expire_in: 1 week ubuntu_16.04_amd64_deb: tags: @@ -55,3 +70,7 @@ ubuntu_16.04_amd64_deb: - echo `pwd` - cd l2ork_addons - ./tar_em_up.sh -B + artifacts: + paths: + - ../*.deb + expire_in: 1 week -- GitLab