Fix Linux build and set up travis (#119)

* Add missing progress functions

* eslint fails so disable

* Correct case

* Fix copy commands

* Set up travis
This commit is contained in:
ta264 2017-11-12 14:18:00 +00:00 committed by Qstick
parent c3d5419028
commit e1e7cad951
5 changed files with 31 additions and 7 deletions

View file

@ -74,10 +74,20 @@ BuildWithXbuild()
CheckExitCode xbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile
}
ProgressStart()
{
echo "##teamcity[progressStart '$1']"
}
ProgressEnd()
{
echo "##teamcity[progressEnd '$1']"
}
LintUI()
{
ProgressStart 'ESLint'
CheckExitCode yarn eslint
# CheckExitCode yarn eslint
ProgressEnd 'ESLint'
ProgressStart 'Stylelint'