Browse Source

[CI] haxe-output: put url in the commit log

Andy Li 9 years ago
parent
commit
d0e269ab65
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/RunCi.hx

+ 1 - 1
tests/RunCi.hx

@@ -702,7 +702,7 @@ class RunCi {
 			changeDirectory(haxe_output);
 			runCommand("git", ["add", haxe_output]);
 			var commitMsg = [
-				'-m', '${Sys.getEnv("TRAVIS_JOB_NUMBER")} ${TEST} ${gitInfo.commit}',
+				'-m', '${Sys.getEnv("TRAVIS_JOB_NUMBER")} ${TEST} https://github.com/HaxeFoundation/haxe/commit/${gitInfo.commit}',
 				'-m', 'https://travis-ci.org/HaxeFoundation/haxe/jobs/${Sys.getEnv("TRAVIS_JOB_ID")}',
 			];
 			runCommand("git", ["commit", "-q", "--allow-empty"].concat(commitMsg));