diff --git a/.travis.yml b/.travis.yml index 6f5a83ba91..a92cc552d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,8 @@ language: csharp script: - travis_retry make cli-dependencies - make all - - make test - make check + - make test # Automatically update the trait documentation and Lua API after_success: diff --git a/Makefile b/Makefile index dd78333523..fc9486d1f4 100644 --- a/Makefile +++ b/Makefile @@ -172,40 +172,57 @@ OpenRA.Editor.Form1.resources: editor: OpenRA.Editor.MapSelect.resources OpenRA.Editor.Form1.resources $(editor_TARGET) check: + @echo @echo "Checking for code style violations in OpenRA.Game..." @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Game + @echo @echo "Checking for code style violations in OpenRA.Renderer.Null..." @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Renderer.Null + @echo @echo "Checking for code style violations in OpenRA.GameMonitor..." @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.GameMonitor + @echo @echo "Checking for code style violations in OpenRA.Mods.Common..." @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Mods.Common + @echo @echo "Checking for code style violations in OpenRA.Mods.RA..." @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Mods.RA + @echo @echo "Checking for code style violations in OpenRA.Mods.Cnc..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Mods.Cnc + @echo @echo "Checking for code style violations in OpenRA.Mods.D2k..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Mods.D2k + @echo @echo "Checking for code style violations in OpenRA.Mods.TS..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Mods.TS + @echo @echo "Checking for code style violations in OpenRA.Editor..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Editor + @echo @echo "Checking for code style violations in OpenRA.Renderer.Sdl2..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Renderer.Sdl2 + @echo @echo "Checking for code style violations in OpenRA.Utility..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Utility + @echo @echo "Checking for code style violations in OpenRA.Test..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.Test + @echo @echo "Checking for code style violations in OpenRA.TilesetBuilder..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.TilesetBuilder test: + @echo @echo "Testing Tiberian Sun mod MiniYAML..." @mono --debug OpenRA.Utility.exe ts --check-yaml + @echo @echo "Testing Dune 2000 mod MiniYAML..." @mono --debug OpenRA.Utility.exe d2k --check-yaml + @echo @echo "Testing Tiberian Dawn mod MiniYAML..." @mono --debug OpenRA.Utility.exe cnc --check-yaml + @echo @echo "Testing Red Alert mod MiniYAML..." @mono --debug OpenRA.Utility.exe ra --check-yaml