summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-05-11 22:12:56 +0200
committerThomas Haller <thaller@redhat.com>2022-05-11 22:12:56 +0200
commitf6f961f381f72adb4d391a1a55c0dbd6c8a22fc7 (patch)
treefb0e2bb16821851ad08b504588bd974dba325ed9
parent19a96f64edc8a1f592838f210d681e72b7af68a8 (diff)
gitlab-ci: avoid pager for "run-test.sh"
In particular, `dpkg -l` likes to show a pager, when you are on the terminal. Being on the terminal happens, if you try to reproduce a test on your own container. So let's avoid that.
-rwxr-xr-x.gitlab-ci/run-test.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci/run-test.sh b/.gitlab-ci/run-test.sh
index 18038304f8..c8c26f0815 100755
--- a/.gitlab-ci/run-test.sh
+++ b/.gitlab-ci/run-test.sh
@@ -2,6 +2,8 @@
set -ex
+export PAGER=cat
+
IS_FEDORA=0
IS_CENTOS=0
IS_ALPINE=0