aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2024-07-11 21:08:10 +0200
committerDanielGavin <danielgavin5@hotmail.com>2024-07-11 21:08:10 +0200
commit05a3f89a818b4a42e8c194358a31ecc995d5953b (patch)
treede4dcaf027e2b2393762e90c824420c083140088 /ci.sh
parent28f10b496b051560ad60f35a57a0ffde543b053e (diff)
CI should use ci.bat/sh instead
Diffstat (limited to 'ci.sh')
-rw-r--r--ci.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/ci.sh b/ci.sh
new file mode 100644
index 0000000..c07b1a6
--- /dev/null
+++ b/ci.sh
@@ -0,0 +1,39 @@
+#!/usr/bin/env bash
+
+
+if [[ $1 == "CI" ]]
+then
+ shift
+
+ export PATH=$PATH:$PWD/Odin
+ #BUG in odin test, it makes the executable with the same name as a folder and gets confused.
+ cd tests
+
+ odin test ../tests -collection:src=../src -o:speed $@ -define:ODIN_TEST_THREADS=1
+
+ if ([ $? -ne 0 ])
+ then
+ echo "Ols tests failed"
+ exit 1
+ fi
+
+ cd ..
+
+ tools/odinfmt/tests.sh
+
+ if ([ $? -ne 0 ])
+ then
+ echo "Odinfmt tests failed"
+ exit 1
+ fi
+fi
+
+if [[ $1 == "CI_NO_TESTS" ]]
+then
+ shift
+
+ export PATH=$PATH:$PWD/Odin
+fi
+
+
+odin build src/ -show-timings -collection:src=src -out:ols -no-bounds-check -o:speed $@