Return-Path: X-Original-To: apmail-kafka-dev-archive@www.apache.org Delivered-To: apmail-kafka-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 270A818D54 for ; Fri, 2 Oct 2015 23:00:29 +0000 (UTC) Received: (qmail 66750 invoked by uid 500); 2 Oct 2015 23:00:28 -0000 Delivered-To: apmail-kafka-dev-archive@kafka.apache.org Received: (qmail 66656 invoked by uid 500); 2 Oct 2015 23:00:28 -0000 Mailing-List: contact dev-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list dev@kafka.apache.org Received: (qmail 66643 invoked by uid 99); 2 Oct 2015 23:00:28 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2015 23:00:28 +0000 Date: Fri, 2 Oct 2015 23:00:28 +0000 (UTC) From: "Ismael Juma (JIRA)" To: dev@kafka.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (KAFKA-2566) Improve Jenkins set-up MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/KAFKA-2566?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14941928#comment-14941928 ] Ismael Juma commented on KAFKA-2566: ------------------------------------ It's the same reason as I just said. We build by default with 2.10.5 to ensure we don't use 2.11 features and APIs. I do think 2.11.7 should be the default distribution though. > Improve Jenkins set-up > ---------------------- > > Key: KAFKA-2566 > URL: https://issues.apache.org/jira/browse/KAFKA-2566 > Project: Kafka > Issue Type: Task > Reporter: Ismael Juma > > There are currently two Jenkins jobs: > https://builds.apache.org/job/Kafka-trunk > https://builds.apache.org/job/kafka-trunk-git-pr > They both run with Java 7 and execute the following gradle command: > ./gradlew -PscalaVersion=2.10.1 test > There are a few issues with this: > * We don't test Java 8 even though that's the only stable release of the JDK that still receives security fixes > * We are testing with Scala 2.10.1 even though we should be testing with Scala 2.10.5 > * We are not testing with Scala 2.11.x > * We are not doing clean builds > I suggest the following: > 1. Change the `kafka-trunk-git-pr` job to use the `./gradlew clean test` command. > 2. Change the `Kafka-trunk` job to use the `./gradlew clean jarAll docsJarAll testAll` command. > 3. Introduce a kafka-trunk-jdk8 job with the command `./gradlew clean jarAll docsJarAll testAll` > This is a compromise that doesn't slow down the PR job (which is executed much more often) while still testing trunk in all of our supported JDK and Scala versions. -- This message was sent by Atlassian JIRA (v6.3.4#6332)