-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathbuild.sh
executable file
·53 lines (38 loc) · 1.24 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env bash
if [[ $1 == "single_test" ]]
then
shift
#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 -test-name:$@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
shift
if ([ $? -ne 0 ])
then
echo "Test failed"
exit 1
fi
exit 0
fi
if [[ $1 == "test" ]]
then
shift
#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 $@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
if ([ $? -ne 0 ])
then
echo "Test failed"
exit 1
fi
exit 0
fi
if [[ $1 == "debug" ]]
then
shift
odin build src/ -show-timings -collection:src=src -out:ols -microarch:native -no-bounds-check -use-separate-modules -debug $@
exit 0
fi
version="$(git describe --tags --abbrev=7)"
version="${version%-*}:${version##*-}"
sed "s|VERSION :: .*|VERSION :: \"${version}\"|g" src/main.odin > /tmp/main.odin.build && mv -f /tmp/main.odin.build src/main.odin
odin build src/ -show-timings -collection:src=src -out:ols -microarch:native -no-bounds-check -o:speed $@