From a7f134836ae5d1439a9bde9b24a401156a118702 Mon Sep 17 00:00:00 2001
From: nd <git@notandy.de>
Date: Sat, 31 Jul 2021 15:37:44 +0200
Subject: [PATCH] add tests to try to install and test created packages

---
 .gitlab-ci.yml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0f7b4190..fdee7040 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -97,6 +97,20 @@ trans_de:
   - ./update_translations.sh de
   coverage: '/^TOTAL.*\s+(\d+\%)$/'
 
+test:package:pip:
+  stage: test
+  script:
+  - pip3 install dist/*.tar.gz
+  dependencies:
+  - build:pip
+
+test:package:apt:
+  stage: test
+  script:
+  - apt -y install ./build/*.deb
+  dependencies:
+  - build:apt
+
 publish:pip:
   stage: deploy
   script:
-- 
GitLab