Commit 71ba464435bb430b02d94c653cd518c11f7289ff

Carlos Martín Nieto 2017-10-31T14:43:28

travis: let's try a 5GB ramdisk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/script/cibuild.sh b/script/cibuild.sh
index 283acbf..1c28baa 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