[deploy] Merge pull request #29 from KiwanoEngine/configure_ci
Revert: CoApp version fall back to 1.23.x
This commit is contained in:
commit
85f65a2651
|
|
@ -2,8 +2,8 @@ version: 0.9.{build}
|
|||
|
||||
skip_tags: true
|
||||
|
||||
pull_requests:
|
||||
do_not_increment_build_number: true
|
||||
# pull_requests:
|
||||
# do_not_increment_build_number: true
|
||||
|
||||
# image:
|
||||
# - Visual Studio 2019
|
||||
|
|
@ -76,6 +76,7 @@ before_deploy:
|
|||
|
||||
deploy:
|
||||
- provider: GitHub
|
||||
repository: KiwanoEngine/Kiwano
|
||||
tag: v$(appveyor_build_version)
|
||||
release: v$(appveyor_build_version)
|
||||
description: Kiwano-v$(appveyor_build_version) releases.
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@
|
|||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<AdditionalIncludeDirectories>../src/</AdditionalIncludeDirectories>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@
|
|||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<AdditionalIncludeDirectories>../src/</AdditionalIncludeDirectories>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<AdditionalIncludeDirectories>../src/</AdditionalIncludeDirectories>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@
|
|||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# Download the CoApp tools.
|
||||
$msiPath = "$($env:USERPROFILE)\Development.CoApp.Tools.Powershell.msi"
|
||||
(New-Object Net.WebClient).DownloadFile('http://coapp.org/files/Development.CoApp.Tools.Powershell.msi', $msiPath)
|
||||
$msiPath = "$($env:USERPROFILE)\CoApp.Tools.Powershell.msi"
|
||||
(New-Object Net.WebClient).DownloadFile('http://coapp.org/files/CoApp.Tools.Powershell.msi', $msiPath)
|
||||
|
||||
# Install the CoApp tools from the downloaded .msi.
|
||||
Start-Process -FilePath msiexec -ArgumentList /i, $msiPath, /quiet -Wait
|
||||
|
|
|
|||
Loading…
Reference in New Issue