From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web10.12902.1663685143486969292 for ; Tue, 20 Sep 2022 07:45:43 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=UCvXxeIo; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: osteffen@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1663685142; 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: in-reply-to:in-reply-to:references:references; bh=dcmjXtC4jSYBCFjFyXRKGoULlX8E5DG927caJ7K1bKE=; b=UCvXxeIo/r3uEqSYDSNdD4N5FQ2Z3pT0ZqAQVjt6CMSoYaN1OK4N0mggYAn0GOtRFehrQF 3xg9FZOdSHvGEybI1xoUJBJOLmYMOj4XSbNH5OBHszmJbnqLvRxwuXId4rJux05PE1dRDt Wz4pA5LW6oFYdWnJTDT6xZpOIvRt+hE= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-394-CrOkyM3QPaKLpQRd5IeqSA-1; Tue, 20 Sep 2022 10:45:39 -0400 X-MC-Unique: CrOkyM3QPaKLpQRd5IeqSA-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id C80E4299E75F; Tue, 20 Sep 2022 14:45:38 +0000 (UTC) Received: from osteffen-laptop.fritz.box (unknown [10.39.194.127]) by smtp.corp.redhat.com (Postfix) with ESMTP id B4518492B04; Tue, 20 Sep 2022 14:45:35 +0000 (UTC) From: "Oliver Steffen" To: devel@edk2.groups.io Cc: Oliver Steffen , Andrew Fish , Ard Biesheuvel , Bob Feng , Gerd Hoffmann , Jiewen Yao , Jordan Justen , Leif Lindholm , Liming Gao , Michael D Kinney , Michael Kubacki , Ray Ni , Sami Mujawar , Sean Brogan , Yuwei Chen , Pawel Polawski Subject: [PATCH v5 1/4] CI: don't force python verison (Linux only) Date: Tue, 20 Sep 2022 16:45:21 +0200 Message-Id: <20220920144524.1098189-2-osteffen@redhat.com> In-Reply-To: <20220920144524.1098189-1-osteffen@redhat.com> References: <20220920144524.1098189-1-osteffen@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true Use the Python supplied by the container image. Signed-off-by: Oliver Steffen --- .azurepipelines/templates/platform-build-run-steps.yml | 1 + .azurepipelines/templates/pr-gate-steps.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml index 40a31a509fc5..3c16fa981d5a 100644 --- a/.azurepipelines/templates/platform-build-run-steps.yml +++ b/.azurepipelines/templates/platform-build-run-steps.yml @@ -44,6 +44,7 @@ steps: inputs: versionSpec: ">=3.10.6" architecture: "x64" + condition: not(eq('${{ parameters.tool_chain_tag }}', 'GCC5')) - script: pip install -r pip-requirements.txt --upgrade displayName: 'Install/Upgrade pip modules' diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipelines/templates/pr-gate-steps.yml index cb431e53fcd1..df8802718d99 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -22,6 +22,7 @@ steps: inputs: versionSpec: '>=3.10.6' architecture: 'x64' + condition: not(eq('${{ parameters.tool_chain_tag }}', 'GCC5')) - script: pip install -r pip-requirements.txt --upgrade displayName: 'Install/Upgrade pip modules' -- 2.37.3