summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2017-10-31 14:43:28 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2017-10-31 14:43:28 +0100
commit71ba464435bb430b02d94c653cd518c11f7289ff (patch)
tree19fff708de6a613e2f48480af4d6bfcc02e411dc
parent37bb15122e30bb13aabc213079da53b5cdac2678 (diff)
downloadlibgit2-cmn/macos-ramdisk.tar.gz
travis: let's try a 5GB ramdiskcmn/macos-ramdisk
-rwxr-xr-xscript/cibuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/cibuild.sh b/script/cibuild.sh
index 283acbf5b..1c28baae6 100755
--- a/script/cibuild.sh
+++ b/script/cibuild.sh
@@ -15,8 +15,8 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then
export CLAR_TMP="$HOME"/_clar_tmp
mkdir -p $CLAR_TMP
- # 2M sectors aka ~1GB of space
- device=$(hdiutil attach -nomount ram://$((2 * 1024 * 1024)))
+ # 5*2M sectors aka ~5GB of space
+ device=$(hdiutil attach -nomount ram://$((5 * 2 * 1024 * 1024)))
newfs_hfs $device
mount -t hfs $device $CLAR_TMP
fi