From 9da887841bc16408b4c0d8af1acc593a08aed4ea Mon Sep 17 00:00:00 2001 From: Jaap Eldering Date: Wed, 18 Sep 2024 06:03:46 +0200 Subject: [PATCH] DEBUG --- .github/jobs/configure-checks/all.bats | 6 +++--- .github/jobs/configure-checks/setup_configure_image.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/jobs/configure-checks/all.bats b/.github/jobs/configure-checks/all.bats index f2445ddb8d9..6cec569bb11 100755 --- a/.github/jobs/configure-checks/all.bats +++ b/.github/jobs/configure-checks/all.bats @@ -1,4 +1,4 @@ -#!/usr/bin/env bats +#!/usr/bin/env bats --trace load 'assert' @@ -46,13 +46,13 @@ run_configure () { repo-install () { args=$(translate $@) - ${cmd} install $args -y >/dev/null + ${cmd} install $args -y } repo-remove () { args=$(translate $@) ${cmd} remove $args -y #>/dev/null if [ "$distro_id" != "ID=fedora" ]; then - apt-get autoremove -y 2>/dev/null + apt-get autoremove -y fi } diff --git a/.github/jobs/configure-checks/setup_configure_image.sh b/.github/jobs/configure-checks/setup_configure_image.sh index 4e8e8598184..fb251ea861d 100755 --- a/.github/jobs/configure-checks/setup_configure_image.sh +++ b/.github/jobs/configure-checks/setup_configure_image.sh @@ -27,4 +27,4 @@ make configure cp submit/assert.bash .github/jobs/configure-checks/ # Run the configure tests for this usecase -test_path="/__w/domjudge/domjudge" bats .github/jobs/configure-checks/all.bats +test_path="/__w/domjudge/domjudge" bats --trace .github/jobs/configure-checks/all.bats