Skip to content

Commit

Permalink
Merge pull request #93 from burghardt/test_make_dist
Browse files Browse the repository at this point in the history
Add make dist and build from tarball tests
  • Loading branch information
burghardt committed Mar 22, 2024
2 parents a611363 + dc0131b commit 14d5732
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,20 @@ jobs:
run: make clean
- name: make
run: make -j
- name: distclean
run: make distclean
- name: autogen.sh
run: sh autogen.sh
- name: configure
run: ./configure --prefix=$HOME
- name: dist
run: make dist
- name: build from tarball
run: |
tar xf clamfs-*.tar.gz
cd clamfs-*/
sh configure
make -j
make clean
make dist
make distclean
5 changes: 1 addition & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
SUBDIRS = src doc

EXTRA_DIST = bootstrap \
ax_boost_base.m4 \
fdpassing.m4 \
version.h
EXTRA_DIST = bootstrap m4 version.h

BUILT_SOURCES = version.h

Expand Down

0 comments on commit 14d5732

Please sign in to comment.