From 59287c2a53354cadc4da495ad632b51c87fb39e7 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 8 Mar 2021 13:55:14 +0100 Subject: [PATCH] gci: Disable test for NO_PYTHON It's been causing me quite some headache, and I don't see the point in jumping through the hoops for something that can be trivially fixed by having the required build tools. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ef2d56955..2e6f709b0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: matrix: include: # CFG us just an enumeration so we can refer to the configurations more easily - - {CFG: 1, TEST_CMD: "make", NO_PYTHON: 1} + - {CFG: 1, TEST_CMD: "make"} - {CFG: 2, TEST_CMD: "make check-source check-units installcheck check-gen-updated", COPTFLAGS: "-O3"} - {CFG: 3, ARCH: 32, TEST_CMD: "make check-source check-units installcheck", DEVELOPER: 0} - {CFG: 4, TEST_CMD: "make check-source check-units installcheck check-gen-updated", EXPERIMENTAL_FEATURES: 1}