diff options
author | lns <matzeton@googlemail.com> | 2022-05-25 13:45:30 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-05-26 13:02:41 +0200 |
commit | e27fba584f5e3d0f88127de691a704e6b7516af2 (patch) | |
tree | 06de31c587b822fee05470fa22e268b61a551caa /.github | |
parent | 7010d17ccc5669b2c2cf4fd7b7140b5f4c580b20 (diff) |
Added script to compare and verify the output of `make dist'.add/tarball-verification-script
This fixes some build/test issues resulting when using tarballs.
* nDPI uses autotools (especially autoconf) in a wrong way, see #1163
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 91e45280f..b4f293859 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -329,10 +329,11 @@ jobs: if: startsWith(matrix.arch, 'x86_64') && startsWith(matrix.os, 'windows') run: | msys2 -c './tests/do-dga.sh' - - name: Generate tarball + - name: Generate/Verify tarball if: startsWith(matrix.os, 'ubuntu-latest') && startsWith(matrix.arch, 'x86_64') run: | make dist + ./utils/verify_dist_tarball.sh - name: Generate documentation if: startsWith(matrix.os, 'ubuntu-latest') && startsWith(matrix.arch, 'x86_64') run: | |