mirror of
https://github.com/bitwarden/server.git
synced 2025-02-17 02:01:53 +01:00
34 lines
1003 B
YAML
34 lines
1003 B
YAML
image:
|
|
- Visual Studio 2017
|
|
- Ubuntu1804
|
|
|
|
environment:
|
|
APPVEYOR_YML_DISABLE_PS_LINUX: true
|
|
|
|
services:
|
|
- docker
|
|
|
|
stack: node 10
|
|
|
|
install:
|
|
- sh: npm i -g gulp
|
|
- cmd: choco install cloc --no-progress
|
|
- cmd: "cloc --include-lang C#,SQL,Razor,\"Bourne Shell\",PowerShell,HTML,CSS,Sass,JavaScript,TypeScript --vcs git"
|
|
|
|
before_build:
|
|
#- sh: dotnet restore
|
|
- cmd: msbuild /t:restore
|
|
|
|
build_script:
|
|
- sh: chmod +x ./build-ci.sh
|
|
- sh: ./build-ci.sh
|
|
#- sh: ASPNETCORE_ENVIRONMENT=Production && swaggerGen=true && dotnet swagger tofile --output swagger.json --host api.bitwarden.com --format Indented bin/Debug/netcoreapp2.1/Api.dll public
|
|
- cmd: msbuild bitwarden-server.sln /p:Configuration=Debug /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
|
|
after_build:
|
|
- sh: docker logout
|
|
|
|
test_script:
|
|
#- sh: dotnet test .\test\Core.Test\Core.Test.csproj --configuration Debug --no-build
|
|
- cmd: dotnet test .\test\Core.Test\Core.Test.csproj --configuration Debug --no-build
|