You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ns...@apache.org on 2016/09/04 13:55:03 UTC

thrift git commit: THRIFT-3907 Skip Docker image build on CI when unchanged

Repository: thrift
Updated Branches:
  refs/heads/master 2c64bddc0 -> ddc53c324


THRIFT-3907 Skip Docker image build on CI when unchanged

Add missing docker tag command for skip path.


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/ddc53c32
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/ddc53c32
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/ddc53c32

Branch: refs/heads/master
Commit: ddc53c32486cc23dfa63ed4e5abb19923b8d13e6
Parents: 2c64bdd
Author: Nobuaki Sukegawa <ns...@apache.org>
Authored: Sun Sep 4 22:43:34 2016 +0900
Committer: Nobuaki Sukegawa <ns...@apache.org>
Committed: Sun Sep 4 22:54:04 2016 +0900

----------------------------------------------------------------------
 build/docker/check_unmodified.sh | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/ddc53c32/build/docker/check_unmodified.sh
----------------------------------------------------------------------
diff --git a/build/docker/check_unmodified.sh b/build/docker/check_unmodified.sh
index 564e4c1..9d5fa26 100755
--- a/build/docker/check_unmodified.sh
+++ b/build/docker/check_unmodified.sh
@@ -35,6 +35,7 @@ function try_pull {
 
 if try_pull; then
   echo Dockerfile seems identical. No need to rebuild from scratch.
+  docker tag thrift/thrift-build:$DISTRO thrift-build:$DISTRO
 else
   echo Either Dockerfile has changed or pull failure. Need to build brand new one.
   exit 1