aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-11-02 19:10:03 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-11-02 19:48:49 +0100
commit2c4a1fc5df1faf34f3c2be74fee0f99b838cda50 (patch)
tree6143dc8ab937b7710a9a223b26c80bc2a990785a /scripts
parentc0eff977c481b9235e5f0a411ef36787027172cf (diff)
downloaddotty-2c4a1fc5df1faf34f3c2be74fee0f99b838cda50.tar.gz
dotty-2c4a1fc5df1faf34f3c2be74fee0f99b838cda50.tar.bz2
dotty-2c4a1fc5df1faf34f3c2be74fee0f99b838cda50.zip
Use absolute dates in Jenkins git-log.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/common2
-rwxr-xr-xscripts/jobs/validate/junit2
-rwxr-xr-xscripts/jobs/validate/partest2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/common b/scripts/common
index c938d342f..77da64d83 100755
--- a/scripts/common
+++ b/scripts/common
@@ -10,7 +10,7 @@ update() {
(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
+ git log --pretty=format:"%h - %an, %aD : %s" -n 10 # show last commits
cd -
}
diff --git a/scripts/jobs/validate/junit b/scripts/jobs/validate/junit
index ec42696a4..cf9b49c33 100755
--- a/scripts/jobs/validate/junit
+++ b/scripts/jobs/validate/junit
@@ -4,6 +4,6 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
-git log --pretty=format:"%h - %an, %ar : %s" -n 10
+git log --pretty=format:"%h - %an, %aD : %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 02a432703..24dd34c4b 100755
--- a/scripts/jobs/validate/partest
+++ b/scripts/jobs/validate/partest
@@ -4,7 +4,7 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
-git log --pretty=format:"%h - %an, %ar : %s" -n 10
+git log --pretty=format:"%h - %an, %aD : %s" -n 10
sbt $sbtArgs update compile "partest-only run --show-diff --verbose"