mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Cake skip verification build stuff #865
This commit is contained in:
parent
affc5b36ad
commit
ac0f3f3868
2 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ install:
|
|||
# Get the latest stable version of Node.js or io.js
|
||||
- ps: Install-Product node $env:nodejs_version
|
||||
build_script:
|
||||
- ps: ./build.ps1 -Verbosity Diagnostic
|
||||
- ps: ./build.ps1 --settings_skipverification=true -Verbosity Diagnostic
|
||||
|
||||
after_build:
|
||||
- cmd: >-
|
||||
|
|
|
@ -83,15 +83,15 @@ Task("SetVersionInfo")
|
|||
|
||||
Information(@"Build:{0}",AppVeyor.Environment.Build.Dump());
|
||||
|
||||
var fullVer = AppVeyor.Environment.Build.Version + "-" + versionInfo.BranchName;
|
||||
var fullVer = AppVeyor.Environment.Build.Version;
|
||||
|
||||
|
||||
buildSettings.ArgumentCustomization = args => args.Append("/p:SemVer=" + versionInfo.AssemblySemVer);
|
||||
buildSettings.ArgumentCustomization = args => args.Append("/p:FullVer=" + fullVer);
|
||||
publishSettings.ArgumentCustomization = args => args.Append("/p:SemVer=" + versionInfo.AssemblySemVer);
|
||||
publishSettings.ArgumentCustomization = args => args.Append("/p:FullVer=" + fullVer);
|
||||
// buildSettings.VersionSuffix = versionInfo.BranchName;
|
||||
// publishSettings.VersionSuffix = versionInfo.BranchName;
|
||||
buildSettings.VersionSuffix = versionInfo.BranchName;
|
||||
publishSettings.VersionSuffix = versionInfo.BranchName;
|
||||
});
|
||||
|
||||
Task("Restore")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue