Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2023-06-09 14:06:34 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-06-09 14:06:34 +0300
commitd820d7570a2d59c957b96aa04ed17c8fed71443a (patch)
tree1165cd2e9fe9250ec8ebff62df366563c6d3d104 /.gitlab-ci.yml
parent1af32724e232c503a5d937a392224f454b8bcc9b (diff)
ci: Increase size of test data tmpfs to avoid ENOSPC
We see some ENOSPC errors in our test jobs since we have migrated them to use a tmpfs. Seemingly, 2GB of storage is not sufficient. Increase the tmpfs partition to 4GB instead. Given that the large runners have 32GB of RAM the machine should trivially handle this.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 428719076..714beca89 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -107,7 +107,7 @@ workflow:
# Speed up test execution by writing test data into tmpfs instead of onto
# the underlying disk.
- chmod 1777 "${TEST_TMP_DIR}"
- - mount none -t tmpfs -o size=2G "${TEST_TMP_DIR}"
+ - mount none -t tmpfs -o size=4G "${TEST_TMP_DIR}"
- go version
script:
# Create the build directory for the unprivileged user that we're running