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

[CI] migrate CI test steps to containers #310

Open
wants to merge 2 commits into
base: vNext
Choose a base branch
from

Conversation

NirWolfer
Copy link
Contributor

@NirWolfer NirWolfer commented Feb 19, 2025

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?

  • Bugfix
  • Feature
  • Code style update
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • Tests
  • Other

Check list

  • Code follows the style de facto guidelines of this project
  • Comments have been inserted in hard to understand places
  • Documentation has been updated (if necessary)
  • Test has been added (if possible)

@NirWolfer NirWolfer force-pushed the HPCINFRA-3249 branch 15 times, most recently from 6f35827 to 696827b Compare February 25, 2025 15:38
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]>
@NirWolfer NirWolfer marked this pull request as ready for review February 26, 2025 13:40
@dpressle
Copy link
Collaborator

dpressle commented Mar 5, 2025

bot:retest

Copy link
Collaborator

@dpressle dpressle left a 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

@NirWolfer NirWolfer force-pushed the HPCINFRA-3249 branch 6 times, most recently from 70a7dc5 to 9e0436b Compare March 5, 2025 14:39
@NirWolfer NirWolfer force-pushed the HPCINFRA-3249 branch 2 times, most recently from 18cb753 to a773a22 Compare March 6, 2025 08:37
@NirWolfer NirWolfer force-pushed the HPCINFRA-3249 branch 2 times, most recently from e52a28e to f660eef Compare March 6, 2025 10:57
@NirWolfer
Copy link
Contributor Author

bot:retest

@NirWolfer NirWolfer requested a review from dpressle March 6, 2025 12:28

function do_hugepages()
{
if [[ -f /.dockerenv && ! $(grep -q hugetlbfs /proc/mounts) ]]; then
Copy link
Collaborator

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
Copy link
Collaborator

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
Copy link
Collaborator

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)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants