mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Fixed: Don't fail build on test failure (#173)
* Fixed: Don't fail build on test failure This sets Appveyor up to use the original build.sh and test.sh scripts. Enables tests for Travis Add frontend linting checks to Appveyor builds Add Failed Tests message to Appveyor builds Fix windows installer naming Fix a few UI issues causing eslint and stylelint to fail * fixup! forgot one ui fix. * fixup! Inno doesn't like appveyor appending string to pr version * fixup! It's too late, my brain is mush
This commit is contained in:
@@ -6,9 +6,10 @@
|
||||
#define AppURL "https://lidarr.audio/"
|
||||
#define ForumsURL "https://forums.lidarr.audio/"
|
||||
#define AppExeName "Lidarr.exe"
|
||||
#define BuildNumber "0.3"
|
||||
#define BuildNumber GetEnv('BUILD_NUMBER')
|
||||
#define BranchName GetEnv('branch')
|
||||
#define BuildNumber "0.2"
|
||||
#define BuildNumber GetEnv('APPVEYOR_BUILD_NUMBER')
|
||||
#define BuildVersion GetEnv('APPVEYOR_BUILD_VERSION')
|
||||
#define BranchName GetEnv('APPVEYOR_REPO_BRANCH')
|
||||
|
||||
[Setup]
|
||||
; NOTE: The value of AppId uniquely identifies this application.
|
||||
@@ -25,7 +26,7 @@ DefaultDirName={commonappdata}\Lidarr\bin
|
||||
DisableDirPage=yes
|
||||
DefaultGroupName={#AppName}
|
||||
DisableProgramGroupPage=yes
|
||||
OutputBaseFilename=Lidarr.{#BranchName}.{#BuildNumber}.windows
|
||||
OutputBaseFilename=Lidarr.{#BranchName}.{#BuildVersion}.windows
|
||||
SolidCompression=yes
|
||||
AppCopyright=Creative Commons 3.0 License
|
||||
AllowUNCPath=False
|
||||
@@ -34,7 +35,7 @@ DisableReadyPage=True
|
||||
CompressionThreads=2
|
||||
Compression=lzma2/normal
|
||||
AppContact={#ForumsURL}
|
||||
VersionInfoVersion={#BuildNumber}
|
||||
VersionInfoVersion=0.2.0.{#BuildNumber}
|
||||
|
||||
[Languages]
|
||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||
|
||||
Reference in New Issue
Block a user