From 089a5a2e5a400790f320699bfa4aaecbb18fd0bf Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Mon, 27 Nov 2023 16:35:11 +0100 Subject: [PATCH] Run all Docker CI containers with 8G of /dev/shm allocated This should allow us to update boost, due to a change upstream. For more info on the issue, see: https://github.com/alisw/alidist/pull/5242 MacOS builders must not use this option, since we don't use Docker there. --- ci/repo-config/DEFAULTS.env | 1 + ci/repo-config/macos/DEFAULTS.env | 1 + ci/repo-config/mesosci/slc8-gpu/DEFAULTS.env | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 ci/repo-config/mesosci/slc8-gpu/DEFAULTS.env diff --git a/ci/repo-config/DEFAULTS.env b/ci/repo-config/DEFAULTS.env index f419c125..fd39b3b9 100644 --- a/ci/repo-config/DEFAULTS.env +++ b/ci/repo-config/DEFAULTS.env @@ -6,5 +6,6 @@ BUILD_SUFFIX=master MAX_DIFF_SIZE=20000000 TIMEOUT=120 LONG_TIMEOUT=36000 +DOCKER_EXTRA_ARGS='--tmpfs=/dev/shm:rw,size=8g,mode=1777' INSTALL_ALIBUILD='alisw/alibuild@v1.15.3#egg=alibuild' INSTALL_ALIBOT='alisw/ali-bot@master#egg=ali-bot' diff --git a/ci/repo-config/macos/DEFAULTS.env b/ci/repo-config/macos/DEFAULTS.env index 9f312521..038e8883 100644 --- a/ci/repo-config/macos/DEFAULTS.env +++ b/ci/repo-config/macos/DEFAULTS.env @@ -1,3 +1,4 @@ TRUSTED_USERS=ktf,TimoWilken TRUST_COLLABORATORS=true REMOTE_STORE= +DOCKER_EXTRA_ARGS= diff --git a/ci/repo-config/mesosci/slc8-gpu/DEFAULTS.env b/ci/repo-config/mesosci/slc8-gpu/DEFAULTS.env deleted file mode 100644 index 994bffe4..00000000 --- a/ci/repo-config/mesosci/slc8-gpu/DEFAULTS.env +++ /dev/null @@ -1 +0,0 @@ -DOCKER_EXTRA_ARGS='--tmpfs=/dev/shm:rw,size=8g,mode=1777'