gitlab-ci: add test:debian-stable.

This is going to install the deb artifact created before.

Change-Id: I59a52c8d7fe5dd46bb3ed8684ab3dd477f3baea4
Reviewed-on: https://code.wireshark.org/review/37366
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Reviewed-by: Dario Lombardo <lomato@gmail.com>
This commit is contained in:
Dario Lombardo 2020-05-31 23:34:00 +02:00
parent 2318cbd8bc
commit f363aa57f9
1 changed files with 11 additions and 0 deletions

View File

@ -122,3 +122,14 @@ build:debian-stable:
paths:
- debian-packages/*.deb
expire_in: 3 days
test:debian-stable:
image: debian:stable
stage: test
script:
- apt-get update
- DEBIAN_FRONTEND=noninteractive apt-get install ./debian-packages/*.deb -y
- tshark --version
variables:
GIT_STRATEGY: none
dependencies:
- build:debian-stable