Hi, we tested your kernel and here are the results:
Overall result: PASSED
Merge: OK
Compile: OK
Test: OK
Tested-by: CKI Project <cki-project(a)redhat.com>
Kernel information:
Brew / Koji Task ID: 104324397
You can find all the details about the test run at
https://datawarehouse.cki-project.org/kcidb/checkouts/98503
One or more kernel tests failed:
We also see the following known issues which are not related to your changes:
Issue: NFS Connectathon: SELinux prevents rpcbind
URL: https://bugzilla.redhat.com/1758147
Affected tests:
aarch64 - Filesystem - NFS Connectathon
x86_64 - Filesystem - NFS Connectathon
If you find a failure unrelated to your changes, please ask the test maintainer to review it.
This will prevent the failures from being incorrectly reported in the future.
Please reply to this email if you have any questions about the tests that we
ran or if you have any suggestions on how to make future tests more effective.
,-. ,-.
( C ) ( K ) Continuous
`-',-.`-' Kernel
( I ) Integration
`-'
______________________________________________________________________________
From: Don Zickus on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2519
This change uses the update git push changes for ark-create-release.sh. The
behavior moves the git push for gitlab-ci.yml to the script itself. No
expected behavior fallout, but there are some odd legacy cases that may cause
a subtle change.
Dependent on part2.
Signed-off-by: Don Zickus <dzickus(a)redhat.com>
---
redhat/scripts/ci/ark-ci-env.sh | 30 +++++++++++
redhat/scripts/ci/ark-create-release.sh | 74 +++++++++++-----------------
redhat/scripts/ci/ark-update-configs.sh | 85 ++++++++++++++++++--------------
.gitlab-ci.yml | 12 +----
4 files changed, 108 insertions(+), 93 deletions(-)
From: Don Zickus <dzickus(a)redhat.com>
[CI] add exit 0 to the end of CI scripts
Both of the CI scripts (ark-create-release and ark-update-configs) end
on a conditional that is usually non-zero in the normal case. That
leads that non-zero status to be the exit code of the overall script and
thus tells gitlab that things failed when actually they passed.
ark-create-release.sh last line
test "$TO_PUSH" && eval "$PUSH_CMD" # TO_PUSH is off right now
ark-update-configs.sh last line
grep -q "remote:[ ]* WARNINGS" $TMPFILE && die "Server side warnings"
( normally there is no server side warnings)
Let's make sure the script returns success by adding an explicity 'exit
0' at the end.
Fixes: #123
Signed-off-by: Don Zickus <dzickus(a)redhat.com>
diff --git a/redhat/scripts/ci/ark-create-release.sh b/redhat/scripts/ci/ark-create-release.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/ci/ark-create-release.sh
+++ b/redhat/scripts/ci/ark-create-release.sh
@@ -72,3 +72,5 @@ PUSH_CMD="git push gitlab ${BRANCH} && \\
echo "# $PUSH_VERB $PUSH_STR"
echo "$PUSH_CMD"
test "$TO_PUSH" && eval "$PUSH_CMD"
+
+exit 0
diff --git a/redhat/scripts/ci/ark-update-configs.sh b/redhat/scripts/ci/ark-update-configs.sh
index blahblah..blahblah 100755
--- a/redhat/scripts/ci/ark-update-configs.sh
+++ b/redhat/scripts/ci/ark-update-configs.sh
@@ -110,3 +110,5 @@ fi
# failure. Make sure all branches are pushed first as follow up
# git-pushes may succeed.
grep -q "remote:[ ]* WARNINGS" $TMPFILE && die "Server side warnings"
+
+exit 0
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2626
From: Don Zickus <dzickus(a)redhat.com>
[CI] Make sure we are on correct branch before running script
In commit db7320bd04bf53f61a1fde45c9ef5cd2b1666d42, I tried to optimize
things by move the 'git checkout origin/os-build' to the common setup
section. The side affect of this move meant that the last git checkout
branch went from os-build to ark-infra. Therefore the
ark-create-release.sh script was always outdated.
I can fix this by reverting that change and adding the checkout os-build
line to every variant of the future cronjobs or just add it to the one
place that needs it, rawhide_release. So I am choosing to add it once.
Fixes: #123
Signed-off-by: Don Zickus <dzickus(a)redhat.com>
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index blahblah..blahblah 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -264,6 +264,8 @@ rawhide_release:
script:
- git checkout --track origin/ark-latest && git describe
- git checkout --track origin/ark-infra && git describe
+ # make sure we are on correct code base before running script
+ - git checkout os-build && git describe
- redhat/scripts/ci/ark-create-release.sh || exit_code=$?
- if [ $exit_code -eq 3 ]; then echo "Tag exists, halting" && exit 0; fi;
- if [ $exit_code -ne 0 ]; then echo "Unable to create release tag" && exit 1; fi;
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2624