From 5e02de03908b4a440e79e2a4744adb43f4ea12c7 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Fri, 26 May 2023 19:46:56 +0200 Subject: [PATCH] test ci Signed-off-by: David Sterba --- .github/workflows/devel.yml | 14 -------------- Makefile | 4 ++-- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/devel.yml b/.github/workflows/devel.yml index e8dc1e41c9..796c15d4c4 100644 --- a/.github/workflows/devel.yml +++ b/.github/workflows/devel.yml @@ -20,20 +20,6 @@ jobs: run: ./autogen.sh && ./configure - name: Make run: make V=1 - - name: Musl build - run: sudo docker run kdave/ci-musl-x86_64 ./test-build $GITHUB_REF_NAME --disable-documentation --disable-backtrace --disable-libudev - - name: Tests cli - run: sudo make TEST_LOG=dump test-cli - - name: Tests mkfs - run: sudo make TEST_LOG=dump test-mkfs - - name: Tests check - run: sudo make TEST_LOG=dump test-check - - name: Tests check (lowmem) - run: sudo make TEST_LOG=dump test-check-lowmem - - name: Tests misc - run: sudo make TEST_LOG=dump test-misc - - name: Tests fuzz - run: sudo make TEST_LOG=dump test-fuzz - name: Tests json formatter run: make test-json - name: Tests string-table formatter diff --git a/Makefile b/Makefile index b477beb71e..662f98e34b 100644 --- a/Makefile +++ b/Makefile @@ -517,11 +517,11 @@ test-inst: all test-json: json-formatter-test @echo " [TEST] json formatting" @echo | jq - @{ \ + { \ max=`./json-formatter-test`; \ for testno in `seq 1 $$max`; do \ echo " [TEST/json] $$testno"; \ - ./json-formatter-test $$testno | jq >& /dev/null; \ + ./json-formatter-test $$testno | jq ; \ done \ }