1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
stages:
- build
- autopkgtest
.build: &build
stage: build
before_script:
- apt-get -q update
- apt-get -y --no-install-recommends install devscripts fakeroot
- apt-get -y --no-install-recommends build-dep .
- useradd builduser
- chown -R builduser:builduser .
- chown builduser:builduser ..
- su -c 'origtargz' builduser
script:
- su -c 'dpkg-buildpackage --no-sign -sa -rfakeroot' builduser
after_script:
- rm -rf .built && mkdir .built
- dcmd mv ../*.changes .built/
artifacts:
paths:
- .built
.test: &test
stage: autopkgtest
before_script:
- apt-get -q update -q
- apt-get -y --no-install-recommends install autopkgtest autodep8
script:
- autopkgtest .built/*.changes -- null
build:testing:
<<: *build
image: debian:testing
build:unstable:
<<: *build
image: debian:sid
test:testing:
<<: *test
dependencies:
- build:testing
image: debian:testing
test:unstable:
<<: *test
dependencies:
- build:unstable
image: debian:sid
|