Fixed Ubuntu CI job, added debian build

This commit is contained in:
anon8675309
2022-04-24 01:56:45 -05:00
parent ccfbed6735
commit 28b3ec1988

View File

@@ -5,10 +5,25 @@ default:
- apt-get update -yq
- DEBIAN_FRONTEND=noninteractive apt-get install -yq devscripts sudo
deb:
ubuntu_deb:
stage: build
tags:
- docker
script:
- DEBIAN_FRONTEND=noninteractive TZ=America/Chicago apt-get -y install tzdata
- yes "" | ./utils/do_debian_package.sh --snapshot=stable --type=binary --interactive=no --dput=no --debbuild-extra=--no-sign || true
timeout: 2h
artifacts:
paths:
- '*.deb'
expire_in: 1 week
debian_deb:
stage: build
tags:
- docker
image:
name: debian:latest
script:
- yes "" | ./utils/do_debian_package.sh --snapshot=stable --type=binary --interactive=no --dput=no --debbuild-extra=--no-sign || true
timeout: 2h