From patchwork Wed Jan 13 09:03:12 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 86454 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8CFD3A04B5; Wed, 13 Jan 2021 10:04:18 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 78E81140E88; Wed, 13 Jan 2021 10:04:18 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id 20F8C140E85 for ; Wed, 13 Jan 2021 10:04:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1610528656; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=4vDMfL2z3zESXhkpCcCYB+JW4oa1+x0Rpq4LbDwzdZY=; b=Bi8ppfE1T49aZaGeoiPO3pd+2g4Ovqd18V6fv1bfiqY/sERquYwbR5Uwg1hE4zXUWw3x3s PuTmWLyuMfZmZKfg4IGritR7XP9J1yLIKfPFp6Bc+OJkAJzm8zEzAu+X9S9n6rUfce0nrq xcDJI5obtVqNSalg8ZFXjH6DiBhv7dQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-360-Cc0-fnRzNPayr2n3XLujLA-1; Wed, 13 Jan 2021 04:03:32 -0500 X-MC-Unique: Cc0-fnRzNPayr2n3XLujLA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 781898066E2; Wed, 13 Jan 2021 09:03:31 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.233]) by smtp.corp.redhat.com (Postfix) with ESMTP id E54EC5B4C4; Wed, 13 Jan 2021 09:03:29 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, Aaron Conole Date: Wed, 13 Jan 2021 10:03:12 +0100 Message-Id: <20210113090312.24247-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH] doc: recommend GitHub Actions for CI X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Update the contributing guidelines to describe GitHub Actions first and add a warning about Travis usage. Fixes: 87009585e293 ("ci: hook to GitHub Actions") Signed-off-by: David Marchand Acked-by: Aaron Conole --- doc/guides/contributing/patches.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst index 4e9140bca4..6dbbd5f8d1 100644 --- a/doc/guides/contributing/patches.rst +++ b/doc/guides/contributing/patches.rst @@ -32,9 +32,12 @@ The mailing list for DPDK development is `dev@dpdk.org `_ in order to submit patches. It is also worth registering for the DPDK `Patchwork `_ -If you are using the GitHub service, you can link your repository to -the ``travis-ci.org`` build service. When you push patches to your GitHub -repository, the travis service will automatically build your changes. +If you are using the GitHub service, pushing to a branch will trigger GitHub +Actions to automatically build your changes and run unit tests and ABI checks. + +Additionally, a Travis configuration is available in DPDK but Travis free usage +is limited to a few builds. +You can link your repository to the ``travis-ci.com`` build service. The development process requires some familiarity with the ``git`` version control system. Refer to the `Pro Git Book `_ for further information.