From b4d7ebd6487e7b61d3b23d4d2c661e4c0f16fd8a Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sat, 23 Apr 2022 08:49:35 -0700 Subject: [PATCH] cue.py workaround limitation The first argument after "build" can't be an option. cf. python argparse limitations of add_parser() + REMAINDER --- .github/workflows/ci-scripts-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index 621bdfdf3..8389fe350 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -189,7 +189,7 @@ jobs: run: python .ci/cue.py build - name: Build main module (repeat?) # repeat in "question mode" to ensure a repeated 'make' is a no-op. - run: python .ci/cue.py build -- -q + run: python .ci/cue.py build all -q - name: Run main module tests run: python .ci/cue.py -T 60M test - name: Upload tapfiles Artifact