diff --git a/.travis.yml b/.travis.yml index 53f4a768cf..a3b9d1d944 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ cache: addons: apt: packages: + - lua5.1 - nsis - nsis-common - dpkg @@ -31,6 +32,7 @@ script: - travis_retry make all-dependencies - make all - make check + - make check-scripts - make test # Automatically update the trait documentation and Lua API diff --git a/Makefile b/Makefile index e45b3e8b2f..2cb90d01a4 100644 --- a/Makefile +++ b/Makefile @@ -170,6 +170,12 @@ mod_ts_LIBS = $(COMMON_LIBS) $(STD_MOD_LIBS) $(mod_common_TARGET) PROGRAMS += mod_ts mod_ts: $(mod_ts_TARGET) +check-scripts: + @echo + @echo "Checking for Lua syntax errors..." + @luac -p $(shell find mods/*/maps/* -iname '*.lua') + @luac -p $(shell find lua/* -iname '*.lua') + check: utility mods @echo @echo "Checking for code style violations in OpenRA.Game..."