-
Notifications
You must be signed in to change notification settings - Fork 1
111 lines (100 loc) · 3.81 KB
/
Copy pathbuild.yml
File metadata and controls
111 lines (100 loc) · 3.81 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Scissors CI
on:
push:
branches:
- branch-zero
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@v1
with:
path: ./.sonar/scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner
- name: Install SonarCloud scanner
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
shell: pwsh
run: |
New-Item -Path ./.sonar/scanner -ItemType Directory
dotnet tool update dotnet-sonarscanner --tool-path ./.sonar/scanner
- name: Sonar Begin
env:
OPENCOVER_REPORTS_PATH: "./_TMP/*/coverage.opencover.xml"
COVERAGE_EXCLUSIONS: "**Test*.cs"
shell: pwsh
run: >
./.sonar/scanner/dotnet-sonarscanner begin
/k:"MirzaMerdovic_HttpRequestInterceptor"
/o:"mimme"
/d:sonar.login="${{ secrets.SONAR_TOKEN }}"
/d:sonar.host.url="https://sonarcloud.io"
/d:sonar.cs.opencover.reportsPaths=${{ env.OPENCOVER_REPORTS_PATH }}
/d:sonar.coverage.exclusions=${{ env.COVERAGE_EXCLUSIONS }}
- name: Test
uses: rocklan/dotnet-tests-report@master
env:
PROJECT_PATH: ./src/scissors.sln
NAME: scissors_test_report
TITLE: Scissors Tests Report
GIST_NAME: scissors_tests.md
EXTRA_TEST_PARAMETERS: '--configuration release --collect:"XPlat Code Coverage" --settings ./src/Scissors.Test/runsettings.xml'
with:
project_path: ${{ env.PROJECT_PATH }}
report_name: ${{ env.NAME }}
report_title: ${{ env.TITLE }}
github_token: ${{ secrets.GITHUB_TOKEN }}
gist_name: ${{ env.GIST_NAME }}
gist_badge_label: 'Tests passed: %Counters_passed%/%Counters_total%'
gist_token: ${{ secrets.GIST_TOKEN }}
set_check_status_from_test_outcome: true
fail_build_on_failed_tests: true
extra_test_parameters: ${{ env.EXTRA_TEST_PARAMETERS }}
- name: Sonar End
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: pwsh
run: ./.sonar/scanner/dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
- name: Create nupkg
env:
ROOT_FOLDER: src/Scissors
shell: pwsh
run: |
cd ${{ env.ROOT_FOLDER }}
dotnet pack --configuration Release
- name: Publish nupkg package to GitHub
env:
ROOT_FOLDER: src/Scissors
NUPKG_LOCATION: ./bin/Release/*.nupkg
NUGET_SOURCE: https://nuget.pkg.github.com/MirzaMerdovic/index.json
shell: pwsh
run: |
cd ${{ env.ROOT_FOLDER }}
dotnet nuget push ${{ env.NUPKG_LOCATION }} --source ${{ env.NUGET_SOURCE }} --api-key "${{ secrets.SCISSORS_PAT }}" --skip-duplicate
- name: Publish nupkg package to Nuget
env:
ROOT_FOLDER: src/Scissors
NUPKG_LOCATION: ./bin/Release/*.nupkg
NUGET_SOURCE: https://api.nuget.org/v3/index.json
shell: pwsh
run: |
cd ${{ env.ROOT_FOLDER }}
dotnet nuget push ${{ env.NUPKG_LOCATION }} --source ${{ env.NUGET_SOURCE }} --api-key "${{ secrets.NUGET_API_KEY }}" --skip-duplicate