mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-05 12:36:50 -07:00
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:
parent
c3d5419028
commit
e1e7cad951
5 changed files with 31 additions and 7 deletions
12
build.sh
12
build.sh
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue