2019-05-11 19:07:40 +08:00
|
|
|
version: 1.0.{build}
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
2019-05-16 17:20:59 +08:00
|
|
|
- dev
|
2019-05-11 19:07:40 +08:00
|
|
|
image: Visual Studio 2017
|
|
|
|
clone_depth: 1
|
|
|
|
init:
|
|
|
|
- ps: dotnet --version
|
|
|
|
environment:
|
|
|
|
Appveyor: true
|
2019-05-18 19:19:49 +08:00
|
|
|
COVERALLS_REPO_TOKEN:
|
|
|
|
secure: 5L1b6XqSNTOfU1iZrARo5eUOi1HOleVO3VDCW0pr6yaspgkC5jxL+gBDK0OEY8EI
|
2019-05-11 19:07:40 +08:00
|
|
|
services:
|
|
|
|
- mssql2014
|
|
|
|
- mysql
|
|
|
|
- mongodb
|
|
|
|
install:
|
|
|
|
- ps: >-
|
|
|
|
#copy my.ini into mysql folder
|
|
|
|
|
2019-05-28 09:43:49 +08:00
|
|
|
xcopy "$($env:appveyor_build_folder)\DatabaseScripts\MySQL\my.ini" "C:\Program Files\MySQL\MySQL Server 5.7" /y
|
2019-05-11 19:07:40 +08:00
|
|
|
build_script:
|
|
|
|
- ps: >-
|
2019-05-28 09:43:49 +08:00
|
|
|
./appveyor.build.ps1
|
2019-05-14 21:20:47 +08:00
|
|
|
test_script:
|
|
|
|
- ps: >-
|
2019-05-28 09:43:49 +08:00
|
|
|
./appveyor.test.ps1
|
2019-05-11 19:07:40 +08:00
|
|
|
artifacts:
|
|
|
|
- path: Bootstrap.Admin\bin\release\netcoreapp2.2\publish\
|
|
|
|
name: BootstrapAdmin
|
|
|
|
type: WebDeployPackage
|
2019-05-13 15:38:50 +08:00
|
|
|
deploy:
|
|
|
|
- provider: GitHub
|
|
|
|
tag: v$(appveyor_build_version)
|
|
|
|
release: BootstrapAdmin-v$(appveyor_build_version)
|
|
|
|
description: BootstrapAdmin auto generated by Appveyor
|
|
|
|
auth_token:
|
|
|
|
secure: bTF+J9xTuL63Q3fMN533GYvPEjHYPZsFRCVrpYpyFNcQpLe3CMLYT1D/x52J9nhC
|
|
|
|
artifact: BootstrapAdmin
|
|
|
|
draft: true
|
|
|
|
prerelease: true
|
|
|
|
force_update: true
|
2019-05-16 17:20:59 +08:00
|
|
|
on:
|
|
|
|
branch: master
|
2019-05-26 08:59:27 +08:00
|
|
|
APPVEYOR_REPO_TAG: true
|
2019-05-11 19:07:40 +08:00
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
to:
|
|
|
|
- argo@163.com
|
2019-05-26 08:59:27 +08:00
|
|
|
subject: '{{projectName}} {{branch}} Build {{status}} {{buildVersion}}'
|
2019-05-11 19:07:40 +08:00
|
|
|
message: >-
|
|
|
|
<div style="font-family:'Segoe UI',Arial,Sans-Serif;font-size:10pt;">
|
|
|
|
{{#passed}}
|
2019-05-26 08:59:27 +08:00
|
|
|
<h1 style="font-size: 150%;font-weight:normal; color:#078DC7;"><a href="{{buildUrl}}" style="color:#078DC7;">Build {{repositoryProvider}} {{projectName}} {{branch}} {{buildVersion}} completed</a></h1>{{/passed}}
|
2019-05-11 19:07:40 +08:00
|
|
|
{{#failed}}
|
2019-05-26 08:59:27 +08:00
|
|
|
<h1 style="font-size: 150%;font-weight:normal; color:#ff3228;"><a href="{{buildUrl}}" style="color:#ff3228;">Build {{repositoryProvider}} {{projectName}} {{branch}} {{buildVersion}} failed</a></h1>{{/failed}}
|
2019-05-11 19:07:40 +08:00
|
|
|
<p style="color: #888;">
|
|
|
|
Commit <a href="{{commitUrl}}">{{commitId}}</a> by <a href="mailto:{{commitAuthorEmail}}">{{commitAuthor}}</a> on {{commitDate}}:
|
|
|
|
<br />
|
|
|
|
<span style="font-size: 110%;color:#222;">{{commitMessage}}</span>
|
|
|
|
</p>
|
|
|
|
<p><a href="{{notificationSettingsUrl}}" style="font-size:85%;color:#999;">Configure your notification preferences</a></p>
|
|
|
|
</div>
|
|
|
|
on_build_success: true
|
|
|
|
on_build_failure: true
|
|
|
|
on_build_status_changed: false
|