aboutsummaryrefslogtreecommitdiffstats
path: root/data/helper/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'data/helper/scripts')
-rwxr-xr-xdata/helper/scripts/build7
-rwxr-xr-xdata/helper/scripts/run4
-rwxr-xr-xdata/helper/scripts/test7
3 files changed, 0 insertions, 18 deletions
diff --git a/data/helper/scripts/build b/data/helper/scripts/build
deleted file mode 100755
index e7b4f7c..0000000
--- a/data/helper/scripts/build
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-[ ! -e "$SOLUTIONS_ROOT/cache" ] && mkdir "$SOLUTIONS_ROOT/cache"
-zig build-exe --cache-dir "$SOLUTIONS_ROOT/cache" \
- --pkg-begin "console8" "$SOLUTIONS_ROOT/lib/console8.zig" --pkg-end \
- --pkg-begin "aoc" "$SOLUTIONS_ROOT/lib/aoc.zig" --pkg-end \
- main.zig
diff --git a/data/helper/scripts/run b/data/helper/scripts/run
deleted file mode 100755
index fde940f..0000000
--- a/data/helper/scripts/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-[ ! -e "main" ] && $HELPER_ROOT/scripts/build
-$PWD/main $@
diff --git a/data/helper/scripts/test b/data/helper/scripts/test
deleted file mode 100755
index 945f226..0000000
--- a/data/helper/scripts/test
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-[ ! -e "$SOLUTIONS_ROOT/cache" ] && mkdir "$SOLUTIONS_ROOT/cache"
-zig test --cache-dir "$SOLUTIONS_ROOT/cache" \
- --pkg-begin "console8" "$SOLUTIONS_ROOT/lib/console8.zig" --pkg-end \
- --pkg-begin "aoc" "$SOLUTIONS_ROOT/lib/aoc.zig" --pkg-end \
- main.zig