From patchwork Fri Dec 7 09:31:26 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Petr Vorel X-Patchwork-Id: 1009279 X-Patchwork-Delegate: petr.vorel@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=lists.linux.it (client-ip=2001:1418:10:5::2; helo=picard.linux.it; envelope-from=ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Received: from picard.linux.it (picard.linux.it [IPv6:2001:1418:10:5::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43B6g53hJRz9s3q for ; Fri, 7 Dec 2018 20:31:44 +1100 (AEDT) Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id 13FC13E6DE7 for ; Fri, 7 Dec 2018 10:31:42 +0100 (CET) X-Original-To: ltp@lists.linux.it Delivered-To: ltp@picard.linux.it Received: from in-3.smtp.seeweb.it (in-3.smtp.seeweb.it [217.194.8.3]) by picard.linux.it (Postfix) with ESMTP id 094793E6DC3 for ; Fri, 7 Dec 2018 10:31:39 +0100 (CET) Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by in-3.smtp.seeweb.it (Postfix) with ESMTPS id 6D0B91A014F3 for ; Fri, 7 Dec 2018 10:31:37 +0100 (CET) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 60BBBAFA1; Fri, 7 Dec 2018 09:31:36 +0000 (UTC) From: Petr Vorel To: ltp@lists.linux.it Date: Fri, 7 Dec 2018 10:31:26 +0100 Message-Id: <20181207093126.12901-1-pvorel@suse.cz> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.99.2 at in-3.smtp.seeweb.it X-Virus-Status: Clean X-Spam-Status: No, score=-0.0 required=7.0 tests=SPF_PASS autolearn=disabled version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on in-3.smtp.seeweb.it Subject: [LTP] [PATCH 1/1] travis: Use gcc 8 and clang 7 X-BeenThere: ltp@lists.linux.it X-Mailman-Version: 2.1.18 Precedence: list List-Id: Linux Test Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it Sender: "ltp" Replacing gcc 5 with gcc 8 and clang 4 with clang 7. This gives us shiny new versions, older and very old ones, while still keeping the same number of jobs. Signed-off-by: Petr Vorel --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 078028f9b..f4e9bfe9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,11 +11,11 @@ matrix: ### native builds ### - os: linux env: BUILD="native" INSTALL_PACKAGES="$BUILD" - compiler: gcc-5 + compiler: gcc-8 addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-5'] + packages: ['gcc-8'] - os: linux env: BUILD="native" TREE="out" INSTALL_PACKAGES="$BUILD" @@ -27,11 +27,11 @@ matrix: - os: linux env: BUILD="native" TREE="out" - compiler: clang-4.0 + compiler: clang-7 addons: apt: - sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-4.0'] - packages: ['clang-4.0'] + sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-7'] + packages: ['clang-7'] - os: linux env: BUILD="native" INSTALL_PACKAGES="$BUILD"