-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48aecc5
commit ed16ad9
Showing
3 changed files
with
22 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
#!/bin/sh | ||
sleep 20 | ||
cd root | ||
git clone git@github.com:marcelinorc/junco-provider.git | ||
cd junco-provider | ||
mvn clean install | ||
|
||
cd /root/diversify-statements | ||
git pull | ||
mvn clean package | ||
mvn -Dmaven.test.skip=true clean package | ||
|
||
|
||
rm -rf repo/sosie-exp | ||
mkdir repo | ||
sh script/git/init.sh repo | ||
#mkdir repo | ||
#sh script/git/init.sh repo | ||
|
||
java -jar target/Sosies-generator-1.0-SNAPSHOT-jar-with-dependencies.jar git repo | ||
java -Djava.library.path=lib -jar target/Sosies-generator-1.0-SNAPSHOT-jar-with-dependencies.jar git repo | ||
|
||
sh runFromGit.sh 100 repo & | ||
sh script/runFromGit.sh 1000 repo & |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
cpu=$(cat nbProcess) | ||
for i in `seq 1 $1` | ||
do | ||
for j in `seq 1 $cpu` | ||
do | ||
java -Djava.library.path=lib -Xmx2000m -Dhttp.proxyHost=proxy.rennes.grid5000.fr -Dhttp.proxyPort=3128 -jar target/Sosies-generator-1.0-SNAPSHOT-jar-with-dependencies.jar $(cat propertiesFile) > out_$i_$j & | ||
done | ||
wait | ||
sh script/git/push.sh $2/sosie-exp | ||
done |