aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-11-02 19:01:10 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-11-02 19:14:45 +0100
commitc0eff977c481b9235e5f0a411ef36787027172cf (patch)
tree24f4448d5b9135ef87d221e0e8f2fec5b3d27c4f /scripts
parentc48c4295766b096bfb8183643cfe6d4dd5c1a1c3 (diff)
downloaddotty-c0eff977c481b9235e5f0a411ef36787027172cf.tar.gz
dotty-c0eff977c481b9235e5f0a411ef36787027172cf.tar.bz2
dotty-c0eff977c481b9235e5f0a411ef36787027172cf.zip
Ouch... remove comment that broke compilation.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/common2
-rwxr-xr-xscripts/jobs/validate/junit1
-rwxr-xr-xscripts/jobs/validate/partest4
3 files changed, 6 insertions, 1 deletions
diff --git a/scripts/common b/scripts/common
index a51a60a01..c938d342f 100755
--- a/scripts/common
+++ b/scripts/common
@@ -9,6 +9,8 @@ update() {
git fetch --tags "https://github.com/$1/$2.git"
(git fetch "https://github.com/$1/$2.git" $4 && git checkout -fq FETCH_HEAD) #|| git checkout -fq $4 # || fallback is for local testing on tag
git reset --hard
+ echo updated $1/$2:$4 under $3. Last commits:
+ git log --pretty=format:"%h - %an, %ar : %s" -n 10 # show last commits
cd -
}
diff --git a/scripts/jobs/validate/junit b/scripts/jobs/validate/junit
index 8fa3811fe..ec42696a4 100755
--- a/scripts/jobs/validate/junit
+++ b/scripts/jobs/validate/junit
@@ -4,5 +4,6 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
+git log --pretty=format:"%h - %an, %ar : %s" -n 10
update DarkDimius scala scala-scala dotty-library
sbt $sbtArgs update compile test
diff --git a/scripts/jobs/validate/partest b/scripts/jobs/validate/partest
index 55ec9f4c1..02a432703 100755
--- a/scripts/jobs/validate/partest
+++ b/scripts/jobs/validate/partest
@@ -4,5 +4,7 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
-sbt $sbtArgs update compile "partest-only --show-diff --verbose"
+git log --pretty=format:"%h - %an, %ar : %s" -n 10
+
+sbt $sbtArgs update compile "partest-only run --show-diff --verbose"