GitHub Actions workflow for running GNU tar tests#45
GitHub Actions workflow for running GNU tar tests#45kaladron wants to merge 3 commits intouutils:mainfrom
Conversation
|
Hi @sylvestre! I need guidance on this PR. =) It's correctly showing that all tests are failing (I spot checked the logs, it's calling with "tar cf", which we don't handle) How do we make the nice graph that you have for Coreutils? =) |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #45 +/- ##
==========================
==========================
☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Also, how do you have it set on uutils/coreutils to not show everything as failing on each PR? I cribbed the setup from coreutils, but I think I'm missing something in the setup. |
|
the process is basically:
|
|
hope this helps! |
|
Thanks! I think 1 and 2 or done with this PR. I'll look at the rest over
the next week.
…On Sat, Nov 22, 2025, 19:35 Sylvestre Ledru ***@***.***> wrote:
*sylvestre* left a comment (uutils/tar#45)
<#45 (comment)>
hope this helps!
—
Reply to this email directly, view it on GitHub
<#45 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAC4FOY3MNFFJEZ4UG75AVD36C3IZAVCNFSM6AAAAACM44GIFGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTKNRWHE4TEMZTGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This checks out GNU tar and runs its test suite against our built tar binary. The hooks in autotest aren't working correctly, so we manually overwrite the built binary with our generated binary for testing.
1022db3 to
700c732
Compare
- Add extraction of GNU test results into JSON artifacts - Add aggregation job to summarize results and compare against reference - Enable continue-on-error for GNU tests to allow workflow completion on failures - Align log compression and upload behavior with coreutils CI
- Remove redundant comparison script - Fix missing artifact upload for PR comments - Optimize GNU log extraction and build bootstrapping - Standardize workflow paths and environment variables
| NPROC="nproc" | ||
| READLINK="readlink" | ||
| ;; | ||
| esac |
There was a problem hiding this comment.
MAKE=$(comand -v gmake||command -v make)
| - name: Install dependencies | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get install -y autoconf autopoint bison texinfo gperf gcc g++ gdb python3-pyinotify jq valgrind libacl1-dev libattr1-dev libcap-dev libselinux1-dev attr quilt gettext |
There was a problem hiding this comment.
Would you remove preinstalled tools for faster setup?
https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md
This checks out GNU tar and runs its test suite
against our built tar binary.
The hooks in autotest aren't working correctly,
so we manually overwrite the built binary with
our generated binary for testing.