aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis-ci.sh
blob: e9e3df330258efac00e68da1164dd897eb5c1f81 (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash

if [ "$TASK" = "spellcheck" ]; then
	result=0
	# Create list of files to be spellchecked
	spellcheck_files=$(find -type f | grep -v ".git/")

	# Run spellintian to find spelling errors
	sl_results=$(spellintian $spellcheck_files 2>&1)

	sl_errors=$(wc -l <<< "$sl_results")
	sl_errors_dups=$((grep "\(duplicate word\)" | wc -l) <<< "$sl_results")
	sl_errors_nodups=$((grep -v "\(duplicate word\)" | wc -l) <<< "$sl_results")

	if [ "$sl_errors" -ne 0 ]; then
		printf "Spellintian found %s errors (%s spelling, %s duplicate words):\n\n" "$sl_errors" "$sl_errors_nodups" "$sl_errors_dups"
		printf "%s\n\n" "$sl_results"
		result=1
	else
		printf "Spellintian reports no errors\n"
	fi

	# Run codespell to find some more
	cs_results=$(codespell --check-filenames --check-hidden --quiet 2 --regex "[a-zA-Z0-9][\\-'a-zA-Z0-9]+[a-zA-Z0-9]" $spellcheck_files 2>&1)
	cs_errors=$(wc -l <<< "$cs_results")
	if [ "$cs_errors" -ne 0 ]; then
		printf "Codespell found %s errors:\n\n" "$cs_errors"
		printf "%s\n\n" "$cs_results"
		result=1
	else
		printf "Codespell reports no errors\n"
	fi
	exit "$result"
elif [ "$TASK" = 'sanitize' ]; then
	# Run sanitized compile
	travis_fold start "make_sanitize"
	make sanitize;
	travis_fold end "make_sanitize"
elif [ "$TASK" = 'windows' ]; then
	travis_fold start "make_windows"
	make windows;
	make -C backends lua.dll
	travis_fold end "make_windows"
	if [ "$(git describe)" == "$(git describe --abbrev=0)" ]; then
		travis_fold start "deploy_windows"
		mkdir ./deployment
		mkdir ./deployment/backends
		mkdir ./deployment/docs
		cp ./midimonster.exe ./deployment/
		cp ./backends/*.dll ./deployment/backends/
		cp ./monster.cfg ./deployment/monster.cfg
		cp ./backends/*.md ./deployment/docs/
		cp -r ./configs ./deployment/
		cd ./deployment
		zip -r "./midimonster-$(git describe)-windows.zip" "./"
		find . ! -iname '*.zip' -delete
		travis_fold end "deploy_windows"
	fi
else
	# Otherwise compile as normal
	travis_fold start "make"
	make full;
	travis_fold end "make"
	if [ "$(git describe)" == "$(git describe --abbrev=0)" ]; then
		travis_fold start "deploy_unix"
		mkdir ./deployment
		mkdir ./deployment/backends
		mkdir ./deployment/docs
		cp ./midimonster ./deployment/
		cp ./backends/*.so ./deployment/backends/
		cp ./monster.cfg ./deployment/monster.cfg
		cp ./backends/*.md ./deployment/docs/
		cp -r ./configs ./deployment/
		cd ./deployment
		tar czf "midimonster-$(git describe)-$TRAVIS_OS_NAME.tgz" *
		find . ! -iname '*.tgz' -delete
		travis_fold end "deploy_unix"
	fi
fi