From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1084FC43460 for ; Wed, 12 May 2021 17:06:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CD932613CB for ; Wed, 12 May 2021 17:06:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237741AbhELRGz (ORCPT ); Wed, 12 May 2021 13:06:55 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:55693 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235091AbhELQT1 (ORCPT ); Wed, 12 May 2021 12:19:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1620836295; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=g5ck94HIKNPC6Z6EgVP7nr3R2kbXaoVCQwAuggeHBV0=; b=d0TbyEzVdi/omSuCeMCMB5jQWn/v13GqC95f80HAo7x6ns5K7cniZZtqh2grgjYyAdyqdE iaoyI0LUc1HcOUgfRp51c+traCcv7CNHAgR5W1kPFbt+Wl3h/937mmvbtgFPKKxpKuuefL 5a1DXAoOdimDn6hBgJTO1eQ7raxlf0g= 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-424-JIg9VsGDNcinYg3XYv26QA-1; Wed, 12 May 2021 12:18:13 -0400 X-MC-Unique: JIg9VsGDNcinYg3XYv26QA-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 2D84B195D564 for ; Wed, 12 May 2021 16:18:13 +0000 (UTC) Received: from localhost (unknown [10.40.193.208]) by smtp.corp.redhat.com (Postfix) with ESMTP id B0B0160657; Wed, 12 May 2021 16:18:12 +0000 (UTC) From: Petr Lautrbach To: Ondrej Mosnacek , selinux@vger.kernel.org Subject: Re: [PATCH userspace 2/2] scripts/ci: use F34 image instead of F33 In-Reply-To: <20210512102529.122753-3-omosnace@redhat.com> References: <20210512102529.122753-1-omosnace@redhat.com> <20210512102529.122753-3-omosnace@redhat.com> Date: Wed, 12 May 2021 18:18:11 +0200 Message-ID: <87wns4lyd8.fsf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Precedence: bulk List-ID: X-Mailing-List: selinux@vger.kernel.org Ondrej Mosnacek writes: > Now that F34 has been released, it's time to update the CI Vagrantfile > to use the new Fedora version. This also fixes the failure in the > recently added vsock_socket test that depends on a bugfix, which made it > to the F34 image's kernel, but is not in the F33 image's. > > Signed-off-by: Ondrej Mosnacek Acked-by: Petr Lautrbach > --- > scripts/ci/Vagrantfile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/ci/Vagrantfile b/scripts/ci/Vagrantfile > index d7c7bb39..20c523a0 100644 > --- a/scripts/ci/Vagrantfile > +++ b/scripts/ci/Vagrantfile > @@ -34,7 +34,7 @@ SCRIPT > # backwards compatibility). Please don't change it unless you know what > # you're doing. > Vagrant.configure("2") do |config| > - config.vm.box = "fedora/33-cloud-base" > + config.vm.box = "fedora/34-cloud-base" > config.vm.synced_folder "../..", "/root/selinux" > > config.vm.provider "virtualbox" do |v| > -- > 2.31.1