b677e7
From 9bb57b7bed93e79f578e7c5b0c95f1f454e5d829 Mon Sep 17 00:00:00 2001
b677e7
From: Frantisek Sumsal <frantisek@sumsal.cz>
b677e7
Date: Wed, 3 Mar 2021 12:33:38 +0100
b677e7
Subject: [PATCH] ci: drop forgotten Travis references
b677e7
b677e7
rhel-only
b677e7
Related: #1934504
b677e7
---
b677e7
 .github/workflows/unit_tests.sh | 3 +--
b677e7
 1 file changed, 1 insertion(+), 2 deletions(-)
b677e7
b677e7
diff --git a/.github/workflows/unit_tests.sh b/.github/workflows/unit_tests.sh
b677e7
index ea4f7e7592..43882b27da 100755
b677e7
--- a/.github/workflows/unit_tests.sh
b677e7
+++ b/.github/workflows/unit_tests.sh
b677e7
@@ -68,7 +68,7 @@ for phase in "${PHASES[@]}"; do
b677e7
     case $phase in
b677e7
         SETUP)
b677e7
             info "Setup phase"
b677e7
-            info "Using Travis $CENTOS_RELEASE"
b677e7
+            info "Using $CENTOS_RELEASE image"
b677e7
             # Pull a Docker image and start a new container
b677e7
             docker pull quay.io/centos/centos:$CENTOS_RELEASE
b677e7
             info "Starting container $CONT_NAME"
b677e7
@@ -110,7 +110,6 @@ for phase in "${PHASES[@]}"; do
b677e7
             docker exec --interactive=false \
b677e7
                 -e UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1 \
b677e7
                 -e ASAN_OPTIONS=strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1 \
b677e7
-                -e "TRAVIS=$TRAVIS" \
b677e7
                 -t $CONT_NAME \
b677e7
                 meson test --timeout-multiplier=3 -C ./build/ --print-errorlogs
b677e7
             ;;