eduardocerqueira opened a new issue, #3098: URL: https://github.com/apache/incubator-kie-tools/issues/3098
During the kie-tools release process, the CI builds a new image to for https://hub.docker.com/r/apache/incubator-kie-tools-ci-build on this case for 10.1.x The build failed, see **BUILD URL** when trying to uncompress and handle a latest Firefox version which is required in that container image, seems a recent change in Firefox on the type of file, before .bz2 and now .xz `bzip2: (stdin) is not a bzip2 file.` PS: the bug only happens on Linux, on Mac OS works. **BUILD URL** https://ci-builds.apache.org/job/KIE/job/kie-tools/job/ci/job/kie-tools-ci-image-build/job/10.1.x/2/cloudbees-pipeline-explorer/?filter=50&line=1527 How to reproduce: ``` eduardo@server:/tmp$ uname -a Linux server 6.11.0-24-generic #24~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Mar 25 20:14:34 UTC 2 x86_64 x86_64 x86_64 GNU/Linux eduardo@server:/tmp$ ls -laht |grep firefox -rw-rw-r-- 1 eduardo eduardo 70M Apr 30 21:13 firefox-latest.tar.bz2 eduardo@server:/tmp$ tar xjf /tmp/firefox-latest.tar.bz2 -C /tmp bzip2: (stdin) is not a bzip2 file. tar: Child returned status 2 tar: Error is not recoverable: exiting now ``` Verifying the fix ``` eduardo@server:/tmp$ tar xf /tmp/firefox-latest.tar.xz -C /tmp eduardo@server:/tmp$ echo $? 0 eduardo@server:/tmp$ rm /tmp/firefox-latest.tar.xz eduardo@server:/tmp$ echo $? 0 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
