forked from unosquare/embedio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
52 lines (52 loc) · 2.3 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3.0.{build}'
image:
- Visual Studio 2019
- Ubuntu
environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
COVERALLS_REPO_TOKEN:
secure: 1Ce1wX4c2duHsRshiJRZFVIe6VI/r0WTAUG/tXuGFue9CmTI13NJRgZbl9irVKBA
op_build_user: "Geo Perez"
op_build_user_email: "geovanni.perez@gmail.com"
access_token:
secure: HzWdswNyfQbQ0vLk9IQyO+Ei9mxoPYp9rvv6HPhtC9J/Fm7EHRzyV953pbPRXI9I
before_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
git checkout $env:APPVEYOR_REPO_BRANCH -q
cinst docfx -y --no-progress
}
- dotnet restore --verbosity q src
- ps: |
$date_now = Get-Date
$cert = New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname localhost -notafter $date_now
$certThumb = $cert.Thumbprint
$guid = [guid]::NewGuid()
$command = "http add sslcert ipport=0.0.0.0:5555 certhash=$certThumb appid={$guid}"
$command | netsh
build_script:
- cmd: msbuild /target:Pack /verbosity:quiet /p:Configuration=Release src/EmbedIO.sln
test_script:
- dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude=[NUnit3.TestAdapter]* src/tests/EmbedIO.Tests/EmbedIO.Tests.csproj -c Release
after_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE -And $env:APPVEYOR_REPO_BRANCH -eq "master")
{
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):x-oauth-basic@github.com`n"
git config --global core.autocrlf false
git config --global user.email $env:op_build_user_email
git config --global user.name $env:op_build_user
git clone -b documentation https://github.com/unosquare/best-practices.git -q
git clone https://github.com/unosquare/embedio.wiki.git wiki -q
docfx docfx.json --logLevel Error
git clone https://github.com/unosquare/embedio.git -b gh-pages origin_site -q
Copy-Item origin_site/.git _site -recurse
CD _site
Copy-Item README.html index.html -force
git add -A 2>&1
git commit -m "Documentation update" -q
git push origin gh-pages -q
CD ..
}