aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-06-23 21:31:56 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-06-25 23:42:50 +0200
commit70b6899988da0d2ba0a39b846e4f1bd3fa27304f (patch)
tree1ac093a87e0fba6b07c6feb6aceae89bdd9663cf /scripts
parent5dd574819854e9ce7e2f4e181e78153a7ecbf828 (diff)
downloadsonarqube-70b6899988da0d2ba0a39b846e4f1bd3fa27304f.tar.gz
sonarqube-70b6899988da0d2ba0a39b846e4f1bd3fa27304f.zip
Move integration tests to directory tests/
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setupRamdisk.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/setupRamdisk.sh b/scripts/setupRamdisk.sh
deleted file mode 100755
index 1ac8f5b158d..00000000000
--- a/scripts/setupRamdisk.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-set -euo pipefail
-
-RED='\033[0;31m'
-NC='\033[0m' # No Color
-printf "${RED}SETUP RAMDISK${NC}\n"
-printf "${RED}disk size before build${NC}\n"
-df -h
-du -sh $HOME
-
-printf "${RED}move original home${NC}\n"
-sudo mv /home/travis /home/travis.ori
-printf "${RED}create ramdisk mount point${NC}\n"
-sudo mkdir -p /home/travis
-printf "${RED}create ramdisk${NC}\n"
-sudo mount -t tmpfs -o size=8192m tmps /home/travis
-printf "${RED}copy home to ramdisk${NC}\n"
-time sudo cp -R /home/travis.ori/. /home/travis
-printf "${RED}give permissions to travis on its home in ramdisk${NC}\n"
-sudo chown -R travis:travis /home/travis
-