Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ jobs:
libtool

- name: Bootstrap
run: ./bootstrap --configure --prefix "${RUNNER_TEMP}/cunit-distcheck" -- --enable-debug --enable-test
run: ./bootstrap --configure --prefix "${RUNNER_TEMP}/cunit-distcheck" -- --enable-debug --enable-examples --enable-test

- name: Build and check source dist
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-debug --enable-test"
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-debug --enable-examples --enable-test"

- name: Verify source dist contents
env:
Expand All @@ -110,6 +110,7 @@ jobs:
tar -tzf "${DIST_FILE}.tar.gz" | grep -Fx "${DIST_FILE}/Makefile.in"
tar -tzf "${DIST_FILE}.tar.gz" | grep -Fx "${DIST_FILE}/VERSION"
tar -tzf "${DIST_FILE}.tar.gz" | grep -Fx "${DIST_FILE}/README.md"
tar -tzf "${DIST_FILE}.tar.gz" | grep -Fx "${DIST_FILE}/Examples/ExampleTests.h"

- name: Upload source dist
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -194,6 +195,7 @@ jobs:
"../${DIST_FILE}/configure" \
--prefix=/tmp/cunit-rocky8 \
--enable-debug \
--enable-examples \
--enable-test
make -j"$(nproc)"
./CUnit/Sources/Test/test_cunit | tee test_cunit.log
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Makefile.in
**/Makefile.in
aclocal.m4
autom4te.cache/
compile
Expand Down
Loading
Loading