Skip to content

Commit

Permalink
pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tsjensen committed Dec 22, 2023
1 parent 0fa7721 commit 67c3fc2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/boxes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 67c3fc2

Please sign in to comment.