diff options
author | Aria Shrimpton <me@aria.rip> | 2024-01-30 00:47:45 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-01-30 00:47:45 +0000 |
commit | e5b0827538b292fc23b8faabdf17a377a2be4da5 (patch) | |
tree | 6cbbb360a37a1a25f6a9813aad9734f1262d83cf | |
parent | 0bfcbfc9dbda62b0061ce18f2e6cec6c379703b4 (diff) |
dont try and nest sections in justifle
-rw-r--r-- | src/Justfile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Justfile b/src/Justfile index 2daa4c2..9c97185 100644 --- a/src/Justfile +++ b/src/Justfile @@ -12,13 +12,8 @@ run-all-tests: rm -fr {{target_dir / "candelabra"}} echo "Candelabra Path: {{candelabra}}" - @just section-start cost-models @IMPLS=`{{candelabra}} list-library 2>&1 | cut -d ']' -f 2 | grep ::`; for impl in $IMPLS; do just cost-model $impl; done - @just section-end cost-models - - @just section-start comparisons - cd tests/ && for i in $(ls -d */); do [ "${i%%/}" == "target" ] || just compare ${i%%/}; done - @just section-end comparisons + @cd tests/ && for i in $(ls -d */); do [ "${i%%/}" == "target" ] || just compare ${i%%/}; done cost-model impl: (section-start ("cost-model-" + impl)) && (section-end ("cost-model-" + impl)) {{candelabra}} cost-model {{impl}} |