Do not lower case the name of the project

This seems to cause some problem with github integration.

Change-Id: I2e094fdadc5657a732e3cf59634317661ffed833
diff --git a/jenkins/build_defs/jenkins_job.bzl b/jenkins/build_defs/jenkins_job.bzl
index 78c1b1a..dc09f0a 100644
--- a/jenkins/build_defs/jenkins_job.bzl
+++ b/jenkins/build_defs/jenkins_job.bzl
@@ -43,7 +43,7 @@
        staging service and the docker test version. This is to be set
        to false is the calling macros already creates those filegroups.
   """
-  github_project =  "%s/%s" % (org, project.lower())
+  github_project =  "%s/%s" % (org, project)
   github_url = "https://github.com/" + github_project
   if not git_url:
     git_url = github_url
diff --git a/jenkins/jobs/BUILD b/jenkins/jobs/BUILD
index 565b2bc..29714ec 100644
--- a/jenkins/jobs/BUILD
+++ b/jenkins/jobs/BUILD
@@ -38,6 +38,7 @@
     name = "TensorFlow",
     config = ":configs/tensorflow.json",
     org = "tensorflow",
+    project = "tensorflow",
     project_url = "https://tensorflow.org",
 )