You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2017/04/01 13:32:14 UTC

kafka git commit: MINOR: Add jenkins.sh to 0.10.2 branch

Repository: kafka
Updated Branches:
  refs/heads/0.10.2 76f8028d9 -> 5b8541e5e


MINOR: Add jenkins.sh to 0.10.2 branch

This is necessary so that the PR builder works
on PRs that target the 0.10.2 branch.

Author: Matthias J. Sax <ma...@confluent.io>

Reviewers: Ismael Juma <is...@juma.me.uk>

Closes #2782 from mjsax/minor-fix-build-script


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

Branch: refs/heads/0.10.2
Commit: 5b8541e5e3b61d483f03993a38942df2831d6f08
Parents: 76f8028
Author: Matthias J. Sax <ma...@confluent.io>
Authored: Sat Apr 1 14:31:27 2017 +0100
Committer: Ismael Juma <is...@juma.me.uk>
Committed: Sat Apr 1 14:31:32 2017 +0100

----------------------------------------------------------------------
 jenkins.sh | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/5b8541e5/jenkins.sh
----------------------------------------------------------------------
diff --git a/jenkins.sh b/jenkins.sh
new file mode 100755
index 0000000..a21da05
--- /dev/null
+++ b/jenkins.sh
@@ -0,0 +1,20 @@
+#!/bin/bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This script is used for verifying changes in Jenkins. In order to provide faster feedback, the tasks are ordered so
+# that faster tasks are executed in every module before slower tasks (if possible). For example, the unit tests for all
+# the modules are executed before the integration tests.
+./gradlew clean compileJava compileScala compileTestJava compileTestScala checkstyleMain checkstyleTest test --no-daemon -Dorg.gradle.project.testLoggingEvents=started,passed,skipped,failed "$@"