Skip to content

Commit 5e02de0

Browse files
committed
test ci
Signed-off-by: David Sterba <[email protected]>
1 parent 9bd4620 commit 5e02de0

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

.github/workflows/devel.yml

-14
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,6 @@ jobs:
2020
run: ./autogen.sh && ./configure
2121
- name: Make
2222
run: make V=1
23-
- name: Musl build
24-
run: sudo docker run kdave/ci-musl-x86_64 ./test-build $GITHUB_REF_NAME --disable-documentation --disable-backtrace --disable-libudev
25-
- name: Tests cli
26-
run: sudo make TEST_LOG=dump test-cli
27-
- name: Tests mkfs
28-
run: sudo make TEST_LOG=dump test-mkfs
29-
- name: Tests check
30-
run: sudo make TEST_LOG=dump test-check
31-
- name: Tests check (lowmem)
32-
run: sudo make TEST_LOG=dump test-check-lowmem
33-
- name: Tests misc
34-
run: sudo make TEST_LOG=dump test-misc
35-
- name: Tests fuzz
36-
run: sudo make TEST_LOG=dump test-fuzz
3723
- name: Tests json formatter
3824
run: make test-json
3925
- name: Tests string-table formatter

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -517,11 +517,11 @@ test-inst: all
517517
test-json: json-formatter-test
518518
@echo " [TEST] json formatting"
519519
@echo | jq
520-
@{ \
520+
{ \
521521
max=`./json-formatter-test`; \
522522
for testno in `seq 1 $$max`; do \
523523
echo " [TEST/json] $$testno"; \
524-
./json-formatter-test $$testno | jq >& /dev/null; \
524+
./json-formatter-test $$testno | jq ; \
525525
done \
526526
}
527527

0 commit comments

Comments
 (0)