From 32ce36794b54462352f1c7f039443afcdc10af48 Mon Sep 17 00:00:00 2001 From: Gui Iribarren Date: Tue, 19 Sep 2023 13:36:56 +0200 Subject: [PATCH] ci: job_compose_test now builds with `-race` this makes the integration test only slightly slower (around +10%) unlike the abismal effect in unit test (10x) --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d25e7fb7b..072a40992 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -113,6 +113,7 @@ jobs: LOG_PANIC_ON_INVALIDCHARS: true # check that log lines contains no invalid chars (evidence of format mismatch) GOCOVERDIR: "./gocoverage/" # collect code coverage when running binaries CONCURRENT: 1 # run all the start_test.sh tests concurrently + BUILDARGS: "-race" # this makes the integration test only slightly slower (around +10%) unlike the abismal effect in unit test (10x) run: | cd dockerfiles/testsuite && ./start_test.sh - name: Store code coverage artifact