* debian/gitlab-ci.yml: Store build artifacts in parent directory.

This commit is contained in:
Michael Banck 2018-09-25 22:55:54 +02:00
parent 54d5b7cb43
commit 24099e2a50

10
debian/gitlab-ci.yml vendored
View file

@ -13,20 +13,20 @@ stages:
stage: build
artifacts:
paths:
- built
- ../built
script:
- sudo -u builduser dpkg-buildpackage -b -rfakeroot
after_script:
- mkdir built
- dcmd mv ../*ges built/
- mkdir ../built
- dcmd mv ../*ges ../built/
.test: &test
before_script:
- apt-get update
- apt-get -y install devscripts autopkgtest
- origtargz --unpack
- origtargz
stage: autopkgtest
script:
- autopkgtest built/*ges -- null
- autopkgtest ../built/*ges -- null
build:testing:
<<: *build
image: debian:testing