Skip to content

Commit de52be5

Browse files
committed
Fix travis build. Upd runner script
1 parent e228d28 commit de52be5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jdk: oraclejdk8
55
install:
66
- git clone https://github.com/mikessh/vdjtools.git
77
- cd vdjtools/
8-
- git checkout tags/1.1.2-SNAPSHOT
8+
- git checkout tags/1.1.3
99
- mvn clean install -q -Dmaven.test.skip=true
1010
- cd ..
1111

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ VDJdb: A software for functional annotation of immune repertoires
188188
same "printed page" as the copyright notice for easier
189189
identification within third-party archives.
190190

191-
Copyright 2015 Mikhail Shugay
191+
Copyright 2015-2017 Mikhail Shugay
192192

193193
Licensed under the Apache License, Version 2.0 (the "License");
194194
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
compile 'org.codehaus.gpars:gpars:1.0.0'
4141
compile 'junit:junit:4.12'
4242
compile 'com.milaboratory:milib:1.0'
43-
compile 'com.antigenomics:vdjtools:1.1.2'
43+
compile 'com.antigenomics:vdjtools:1.1.3'
4444
compile 'com.fasterxml.jackson.core:jackson-core:2.7.1'
4545
compile 'org.apache.ant:ant:1.9.4'
4646
}

vdjdb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ case $os in
4848
dir=$(dirname "$(readlinkUniversal "$0")")
4949
;;
5050
Linux)
51-
rFreeMb=$(free -m | head -n 3 | tail -n 1 | awk '{ print $4 }')
51+
rFreeMb=$(free -m | grep Mem | awk '{ print $4 }')
5252
maxMb=$(($rFreeMb-$delta))
5353
dir="$(dirname "$(readlink -f "$0")")"
5454
;;
@@ -116,7 +116,7 @@ jar=""
116116

117117
if [[ -z "$otherJar" ]];
118118
then
119-
for j in "$dir/../jar/vdjdb.jar" "$dir/vdjdb.jar" $(ls -d -1 $dir/target/* 2> /dev/null | grep distribution.jar)
119+
for j in "$dir/../jar/vdjdb-1.1.5.jar" "$dir/vdjdb-1.1.5.jar" $(ls -d -1 $dir/target/* 2> /dev/null | grep distribution.jar)
120120
do
121121
if [[ -e "$j" ]];
122122
then

0 commit comments

Comments
 (0)