From a6a407e23da8cf89fac8eb8493469b1c5f957530 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Fri, 16 Sep 2022 03:40:00 -0500 Subject: [PATCH] [wip] append contents of testground/hello_codex/config.nims to scratch/nim-codex/config.nims --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ab75f4e6..675f2983 100644 --- a/Makefile +++ b/Makefile @@ -139,6 +139,7 @@ testground: rm -f "scratch/$$(basename $${PWD})/scratch.patch" git clean -ndfx | grep -v $(SCRATCH_IGNORE) | awk '{ print $$3 }' | xargs -I{} bash -c "test -d '{}' && echo '{}' || true" | xargs -I{} mkdir -p scratch/nim-codex/{} git clean -ndfx | grep -v $(SCRATCH_IGNORE) | awk '{ print $$3 }' | xargs -I{} cp -R {} scratch/nim-codex/{} + echo >> scratch/nim-codex/config.nims && cat testground/$(TESTGROUND_PLAN)/config.nims >> scratch/nim-codex/config.nims testground plan import --from=testground/$(TESTGROUND_PLAN) testground run single --builder=$(TESTGROUND_BUILDER) --runner=$(TESTGROUND_RUNNER) --plan=$(TESTGROUND_PLAN) --testcase=$(TESTGROUND_TESTCASE) $(TESTGROUND_OPTIONS)