Skip to content

Commit

Permalink
Work on build-tarball.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaible committed May 14, 2024
1 parent e213752 commit 89937b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/many-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
${{ env.package }}/config.log
${{ env.package }}/config.status
${{ env.package }}/log[1234]
${{ env.package }}/tests/testsuite.dir/*/*
${{ env.package }}/tests/testsuite.dir/*/*/*
${{ env.package }}/tests/testsuite.dir/*/*/*/*
retention-days: 7
overwrite: true
# Doc: https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts
Expand Down
2 changes: 1 addition & 1 deletion build-tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ date --utc --iso-8601 > .tarball-version
# Build (uses packages make, gcc, ...).
make > log2 2>&1; rc=$?; cat log2; test $rc = 0 || exit 1
# Run the tests.
make check > log3 2>&1; rc=$?; cat log3; test $rc = 0 || exit 1
make check TESTSUITEFLAGS="--debug" > log3 2>&1; rc=$?; cat log3; test $rc = 0 || exit 1
# Check that tarballs are correct.
make distcheck > log4 2>&1; rc=$?; cat log4; test $rc = 0 || exit 1

0 comments on commit 89937b5

Please sign in to comment.