Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

junit summary failure improvement/3.21 #1481

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ci/Dockerfile-cfengine-build-package
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FROM ubuntu:20.04
RUN cat /etc/resolv.conf
RUN bash -c 'echo "test" >/dev/tcp/archive.ubuntu.com/80'
RUN apt-get update -y && apt-get install -y systemd wget sudo
# some ways of debugging update problems below, uncomment to try, see ENT-11871 for archive.ubuntu.com flakes
#RUN apt-get update -y -o Debug::Acquire::http=true
#RUN apt-get install -y -o Debug::Acquire::http=true systemd wget sudo
ADD setup.sh /
RUN /bin/bash -c '/setup.sh 2>&1 > setup.log'
CMD [ "/lib/systemd/systemd" ]
2 changes: 1 addition & 1 deletion ci/junit-text-summary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if test -z "$1"; then
fi
if ! test -f "$1"; then
echo "File $1 not found"
exit 1
exit 0
fi
echo "## Test Summary for $1"
xmlstarlet sel -T \
Expand Down
Loading