2 Star 0 Fork 1

OpenSharperSync/UA-.NETStandard

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
appveyor.yml 3.06 KB
一键复制 编辑 原始数据 按行查看 历史
Martin Regen 提交于 2019-11-20 16:05 . Complex Types client library (#849)
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 1.3.358.{build}-{branch}
# branches to build
branches:
# blacklist
except:
- gh-pages
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2017
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# clone directory
clone_folder: c:\projects\UA-.NetStandardLibrary
# set clone depth
clone_depth: 5 # clone entire repository history if not defined
environment:
matrix:
- solution_name: "UA Core Library.sln"
test_name: "void"
param: ""
- solution_name: "UA-NetStandard.sln"
test_name: "void"
param: ""
- solution_name: "UA-NetStandard.sln"
test_name: "void"
param: "/p:NoHttps=true"
- solution_name: "UA Global Discovery Server.sln"
test_name: "SampleApplications/Samples/GDS/ClientTest/GlobalDiscoveryClientTest.csproj"
param: ""
- solution_name: "UA Universal Windows.sln"
test_name: "void"
param: ""
- solution_name: "UA Quickstart Applications.sln"
test_name: "void"
param: ""
- solution_name: "SampleApplications/Workshop/Aggregation/UA Aggregation.sln"
test_name: "void"
param: ""
- solution_name: "SampleApplications/Workshop/Reference/UA Reference.sln"
test_name: "void"
param: ""
# this is how to allow failing jobs in the matrix
matrix:
fast_finish: false # set this flag to immediately finish build once one of the jobs fails.
# scripts to run before build
before_build:
- nuget restore "%solution_name%"
# scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)
before_package:
# scripts to run after build
after_build:
# to run your custom scripts instead of automatic MSBuild
build_script:
- msbuild "%solution_name%" %param% /p:Configuration=Debug /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild "%solution_name%" %param% /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
# test
test:
test_script:
- if NOT "%test_name%" == "void" ( dotnet test "%test_name%" )
# TODO nunit3-console v3.6 cannot load csproj, enable when newer version is available
# - if NOT "%test_name%" == "void" ( nunit3-console "%test_name%" --result=./myresults.xml;format=AppVeyor )
# - $wc = New-Object 'System.Net.WebClient'
# - $wc.UploadFile("https://ci.appveyor.com/api/testresults/nunit3/$($env:APPVEYOR_JOB_ID)", (Resolve-Path ./myresults.xml))
# build cache to preserve files/folders between builds
cache:
- packages -> **\packages.config
#---------------------------------#
# global handlers #
#---------------------------------#
# on successful build
on_success:
- echo on_success
# on build failure
on_failure:
- echo on_failure
# after build failure or success
on_finish:
- echo on_finish
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/OpenSharperSync/UA-.NETStandard.git
git@gitee.com:OpenSharperSync/UA-.NETStandard.git
OpenSharperSync
UA-.NETStandard
UA-.NETStandard
master

搜索帮助