Move unit tests to using M128 container for Glibc 2.37+ situations. (#10556)

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2024-10-02 15:18:21 -04:00
committed by GitHub
parent f5f73b6c95
commit 5b2ac62e82

View File

@@ -73,7 +73,7 @@ jobs:
x86_64)
# Export the x86_64 container depending on whether this PR updates packages with a minimum glibc greater than or equal to 2.37.
if [[ $GLIBC_237_COMPATIBLE_PACKAGES ]]; then
echo "CONTAINER=hatch-x86_64.m126" >> $GITHUB_ENV
echo "CONTAINER=hatch-x86_64.m128" >> $GITHUB_ENV
else
echo "CONTAINER=nocturne-x86_64.m90" >> $GITHUB_ENV
fi
@@ -83,7 +83,7 @@ jobs:
armv7l)
# Export the armv7l container depending on whether this PR updates packages with a minimum glibc greater than or equal to 2.37.
if [[ $GLIBC_237_COMPATIBLE_PACKAGES ]]; then
echo "CONTAINER=strongbad-armv7l.m126" >> $GITHUB_ENV
echo "CONTAINER=strongbad-armv7l.m128" >> $GITHUB_ENV
else
echo "CONTAINER=fievel-armv7l.m91" >> $GITHUB_ENV
fi