diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:37:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:37:38 +0000 |
commit | 53d04d9ab57185eef71a52b9cd8b8acb182c8d25 (patch) | |
tree | fd3dfc39ef170fb257c8971f0c22f4f771096676 /debian/.gitlab-ci.yml | |
parent | Adding upstream version 1.0.114+deb10u1. (diff) | |
download | debootstrap-53d04d9ab57185eef71a52b9cd8b8acb182c8d25.tar.xz debootstrap-53d04d9ab57185eef71a52b9cd8b8acb182c8d25.zip |
Adding debian version 1.0.114+deb10u1.debian/1.0.114+deb10u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/.gitlab-ci.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/.gitlab-ci.yml b/debian/.gitlab-ci.yml new file mode 100644 index 0000000..1f019b6 --- /dev/null +++ b/debian/.gitlab-ci.yml @@ -0,0 +1,29 @@ +image: debian:sid + +variables: + PKG: debootstrap + +stages: + - build +# - autopkgtest + +package_build: + stage: build + script: + - apt update -qq + - apt build-dep ./ -y -qq + - apt install -y -qq dpkg-dev devscripts + - dpkg-buildpackage -us -uc + - mkdir build && cd ../ && ls -al && dcmd ./${PKG}_*.changes mv ${PKG}/build/ + artifacts: + paths: + - build/* + +#autopkgtest: +# stage: autopkgtest +# script: +# - apt update -qq +# - apt install -y -qq autopkgtest +# - autopkgtest build/*.changes -- null +# dependencies: +# - package_build |