You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few days ago, the icc and icx CI tests started failing, saying they
were out of disk space while installing dependencies (specifically, the
intel compilers themselves).
Now, the VFX Platform 2023 asf docker image I'm using hasn't changed,
and neither has the years-old Intel rpms with the compilers. So maybe
the runners themselves just changed again, in a way that adds some
pre-installs and leaving us not quite enough disk space for everything
else we need?
Asking for a few less things to get installed seems to free up just
enough space. And for the icx one, I also swtiched to the 2025
container, which let me use a slightly newer icx version.
Also: Don't try to install giflib needlessly, which speeds up the setup
time. And remove some dead code in my dependency setup script.
Signed-off-by: Larry Gritz <[email protected]>
time sudo dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm -y ||true
34
+
if [[ "${DO_RPMFUSION_REPO:-0}"!="0" ]] ;then
35
+
time sudo dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm -y ||true
36
+
fi
22
37
23
38
if [[ "$ASWF_VFXPLATFORM_VERSION"=="2022" ]] ;then
24
39
# CentOS 7 based containers need the now-nonexistent centos repo to be
@@ -27,7 +42,7 @@ if [[ "$ASWF_ORG" != "" ]] ; then
27
42
sed -i 's,^mirrorlist=,#,; s,^#baseurl=http://mirror\.centos\.org/centos/$releasever,baseurl=https://vault.centos.org/7.9.2009,' /etc/yum.repos.d/CentOS-Base.repo
0 commit comments