-
Notifications
You must be signed in to change notification settings - Fork 22
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
[CI] migrate CI test steps to containers #310
base: vNext
Are you sure you want to change the base?
Conversation
6f35827
to
696827b
Compare
696827b
to
9e69799
Compare
Today we use benni09 static agent to run test/gtest/valgrind steps which is unscaleable since it can only run one pipeline at a time, causing delays in builds that can be stuck waiting for hours The idea is to move these steps to containers, allowing running them in parallel as well as running multiple pipelines at the same time (depending on the capacity of the k8s cluster) Issue: HPCINFRA-3249 Signed-off-by: NirWolfer <[email protected]>
9e69799
to
1e16cae
Compare
bot:retest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If gtest works, we can now enable concurrent builds
70a7dc5
to
9e0436b
Compare
18cb753
to
a773a22
Compare
Signed-off-by: NirWolfer <[email protected]>
e52a28e
to
f660eef
Compare
bot:retest |
|
||
function do_hugepages() | ||
{ | ||
if [[ -f /.dockerenv && ! $(grep -q hugetlbfs /proc/mounts) ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should probably do a more extensive check for containterized environment like you do in gtest script
[[ -f /.dockerenv || -f /run/.containerenv || -n "${KUBERNETES_SERVICE_HOST}" ]]
#fi | ||
if [ ! -z "$(do_get_ip 'eth')" ]; then | ||
test_ip_list="${test_ip_list} eth_ip4:$(do_get_ip 'eth')" | ||
if [[ -f /.dockerenv ]] || [[ -f /run/.containerenv ]] || [[ -n "${KUBERNETES_SERVICE_HOST}" ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you improve it a little bit and reduce duplication, so instead of build the ip list string in 2 places just have variables for each ip and generate the list in one place
if
ipv4=get_ipv4...
ipv6=get_ipv6...
else
ipv4=
ipv6=
fi
test_ip_list="eth_ip4:${ipv4} eth_ip6:${ipv6}"
else | ||
gtest_opt="--addr=$(do_get_addrs 'eth' ${opt2})" | ||
gtest_opt_ipv6="--addr=$(do_get_addrs 'inet6' ${opt2}) -r fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff" # Remote - Dummy Address | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add check if ips are empty (like we have in all other tests scripts)?
Description
Today we use benni09 static agent to run test/gtest/valgrind steps which is unscalable since it can only run one pipeline at a time, causing delays in builds that can be stuck waiting for hours
The idea is to move these steps to containers, allowing running them in parallel as well as running multiple pipelines at the same time (depending on the capacity of the k8s cluster)
What
Change test/gtest/valgrind steps to run on containers on swx-k8s-spray cluster instead of benni09
Why ?
HPCINFRA-3249
Change type
What kind of change does this PR introduce?
Check list