From 67c3fc201847713b5ed87f60a0ba93b0c9cbfa0e Mon Sep 17 00:00:00 2001 From: Thomas Jensen Date: Thu, 21 Dec 2023 22:49:55 +0100 Subject: [PATCH] pipeline --- .github/workflows/boxes.yml | 6 ++++++ Makefile | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/boxes.yml b/.github/workflows/boxes.yml index 7c767f13..38e6dc5e 100644 --- a/.github/workflows/boxes.yml +++ b/.github/workflows/boxes.yml @@ -39,6 +39,9 @@ jobs: - name: Run black-box tests run: make covtest + - name: Run sunny-day tests + run: make test-sunny + - name: Coveralls uses: coverallsapp/github-action@v2 with: @@ -73,6 +76,9 @@ jobs: - name: Run black-box tests run: make covtest + - name: Run sunny-day tests + run: make test-sunny + - name: Coveralls uses: coverallsapp/github-action@v2 with: diff --git a/Makefile b/Makefile index 16c146a0..1659bf21 100644 --- a/Makefile +++ b/Makefile @@ -203,6 +203,12 @@ win32.utest: $(OUT_DIR) $(MAKE) -C utest BOXES_PLATFORM=win32 C_INCLUDE_PATH=../$(PCRE2_DIR)/src:../$(WIN_CMOCKA_DIR)/include \ LDFLAGS_ADDTL="-L../$(PCRE2_DIR)/.libs -L../$(WIN_CMOCKA_DIR)/lib" utest +test-sunny: + cd test; ./test-sunny-days-all.sh + +covtest-sunny: + cd test; ./test-sunny-days-all.sh --coverage + # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Cleanup