File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 9
9
- secure : UG0OiJIFnm9mlQvV62cRwZzRFclw1Tu1QTFTUvEVcyskFV7fvIZjVZ1ozvIs8arfVulHXnijWYOr4X76HqB4bEMCpuk47nTk6zA+8omC+IVML1C8Mq0yT7L0k9iCShPOylAtvTqUMtrgewYXINqsQQxunqwWsIoeIdFh3wC+Km+0k2/NlxGlsCj4ajP1reGcYxj9b51mjskAC4EueJn0mgd7uFS3C92hJEaFovKUykpnVx9Vx54ssm2QkTtijdGiEUtps8b93dQQ0wQ/KShTQ6HiHr60Z0pt5PGThVT7EeO9RSHEJjIGhK+UKEf6ab0yxWjQxoIGjXEE19orVA+hLiHq9nnAQK293Y6+J6Qc6s+HI2PTrymI3kQGi3KcTN/K9ukW2wfulxX4R/nTFAtWJK4MMmMBahC+t2dSeKDKbq0yzFfFaSgFPLfDcfe/aQ/YBWFDhbvAqWmguMTcwreNeZMvMNLDdRCY3uXMOjqVEhxbJItbyhXCYTnPgdDDKcaJO2GaOadSzZdomwFhqpKjOca9ynVes1NX1Q+jv9E1862l9D8gkWGiMekMW2IhaVZTQvp1V77TCJ+az4jJVmTPdMAjiQvyisKFzC39xYUix11fYuZOTKQjPB1r4CUwVTTS649n6VwGukE0OdnzEFqbMHql6iV4ODQlHEO+syNbAOM=
10
10
install : true
11
11
script :
12
- # - mvn test | grep "^\\[" | tee mvn.log
12
+ - mvn test | grep "^\\[" | tee mvn.log
13
13
# test if the output of the mvn command contained an "[INFO] BUILD SUCCESS" entry
14
- # - grep 'BUILD SUCCESS' mvn.log
15
- # - ls -al test_data
14
+ - grep 'BUILD SUCCESS' mvn.log
15
+ # generate SF1 data set
16
16
- wget -q http://archive.apache.org/dist/hadoop/core/hadoop-2.6.0/hadoop-2.6.0.tar.gz
17
17
- tar xf hadoop-2.6.0.tar.gz
18
18
- export HADOOP_CLIENT_OPTS="-Xmx2G"
19
19
- export HADOOP_HOME=`pwd`/hadoop-2.6.0
20
20
- export LDBC_SNB_DATAGEN_HOME=`pwd`
21
21
- ./run.sh
22
- - ls -al social_network
23
- - ls -al substitution_parameters
24
- # - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then ./deploy.sh; fi
22
+ # deploy subtitution parameters to gh-pages branch
23
+ - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then ./deploy.sh; fi
25
24
notifications :
26
25
slack : ldbcouncil:OrBanrJ7l0EHQbj8T5YdJYhd
27
26
email : false
Original file line number Diff line number Diff line change @@ -6,8 +6,13 @@ set -e # exit with nonzero exit code if anything fails
6
6
rm -rf deployed || exit 0
7
7
mkdir deployed
8
8
9
- # run our compile script, discussed above
10
- cp -r test_data/substitution_parameters deployed/
9
+ # create md5sum files
10
+ cd substitution_parameters
11
+ md5sum interactive* > md5-interactive.chk
12
+ md5sum bi* > md5-bi.chk
13
+
14
+ # copy dir
15
+ cp -r substitution_parameters deployed/
11
16
12
17
# go to the directory and create a *new* Git repo
13
18
cd deployed
You can’t perform that action at this time.
0 commit comments