-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
37 lines (30 loc) · 952 Bytes
/
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
version: '0.1.0.{build}-alpha'
# enfoce CRLF fixing
init:
- git config --global core.autocrlf true
image:
- Visual Studio 2022
- Ubuntu
platform: Any CPU
configuration: Release
skip_tags: true
build_script:
- dotnet build ReleaseCleaner
test_script:
- dotnet test
for:
-
matrix:
only:
- image: Ubuntu
test_script:
- dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:CoverletOutput=coverage.xml
on_success:
- curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import
- curl -Os https://uploader.codecov.io/latest/linux/codecov
- curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
- curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
- gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
- shasum -a 256 -c codecov.SHA256SUM
- chmod +x codecov
- ./codecov -f */coverage.xml