configure

68 lines | 2.977 kB Blame History Raw Download
#!/bin/bash

passphrase=""
if [[ ! -z $1 ]]; then
	passphrase=$1@
	if [[ ! -z $2 ]]; then
		passphrase=$1:$2@
	fi
fi

cd workloads
for file in $(ls *.tar.xz 2>/dev/null); do
	tar Jxf $file
done
cd ..

cd traces
for file in $(ls *.tar.xz 2>/dev/null); do
	tar Jxf $file
done
cd ..

cd output
for file in $(ls *.tar.xz 2>/dev/null); do
	tar Jxf $file
done
cd ..

cd uncached
git clone --depth=1 https://${passphrase}github.com/rmeloca/azkaban-uncached.git azkaban
git clone --depth=1 https://${passphrase}github.com/rmeloca/cloudstore-uncached.git cloudstore
git clone --depth=1 https://${passphrase}github.com/rmeloca/keycloak-uncached.git keycloak
git clone --depth=1 https://${passphrase}github.com/rmeloca/killbill-uncached.git killbill
git clone --depth=1 https://${passphrase}github.com/rmeloca/petclinic-uncached.git petclinic
git clone --depth=1 https://${passphrase}github.com/rmeloca/shopizer-uncached.git shopizer
git clone --depth=1 https://${passphrase}github.com/rmeloca/thingsboard-uncached.git thingsboard
cd ..

cd developers
git clone --depth=1 https://${passphrase}github.com/rmeloca/azkaban-developers.git azkaban
git clone --depth=1 https://${passphrase}github.com/rmeloca/cloudstore-developers.git cloudstore
git clone --depth=1 https://${passphrase}github.com/rmeloca/keycloak-developers.git keycloak
git clone --depth=1 https://${passphrase}github.com/rmeloca/killbill-developers.git killbill
git clone --depth=1 https://${passphrase}github.com/rmeloca/petclinic-developers.git petclinic
git clone --depth=1 https://${passphrase}github.com/rmeloca/shopizer-developers.git shopizer
git clone --depth=1 https://${passphrase}github.com/rmeloca/thingsboard-developers.git thingsboard
cd ..

cd aplcache
git clone --depth=1 https://${passphrase}github.com/rmeloca/azkaban-aplcache.git azkaban
git clone --depth=1 https://${passphrase}github.com/rmeloca/cloudstore-aplcache.git cloudstore
git clone --depth=1 https://${passphrase}github.com/rmeloca/keycloak-aplcache.git keycloak
git clone --depth=1 https://${passphrase}github.com/rmeloca/killbill-aplcache.git killbill
git clone --depth=1 https://${passphrase}github.com/rmeloca/petclinic-aplcache.git petclinic
git clone --depth=1 https://${passphrase}github.com/rmeloca/shopizer-aplcache.git shopizer
git clone --depth=1 https://${passphrase}github.com/rmeloca/thingsboard-aplcache.git thingsboard
cd ..

cd memoizeit
git clone --depth=1 https://${passphrase}github.com/rmeloca/azkaban-memoizeit.git azkaban
git clone --depth=1 https://${passphrase}github.com/rmeloca/cloudstore-memoizeit.git cloudstore
git clone --depth=1 https://${passphrase}github.com/rmeloca/keycloak-memoizeit.git keycloak
git clone --depth=1 https://${passphrase}github.com/rmeloca/killbill-memoizeit.git killbill
git clone --depth=1 https://${passphrase}github.com/rmeloca/petclinic-memoizeit.git petclinic
git clone --depth=1 https://${passphrase}github.com/rmeloca/shopizer-memoizeit.git shopizer
git clone --depth=1 https://${passphrase}github.com/rmeloca/thingsboard-memoizeit.git thingsboard
cd ..