This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b796201
commit 3e6c0fa
Showing
5 changed files
with
107 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: CI | ||
|
||
on: push | ||
|
||
env: | ||
CONFIGURATION: Release | ||
|
||
jobs: | ||
|
||
Build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install CodeCov | ||
run: dotnet tool install -g codecov.tool | ||
|
||
- name: Build | ||
run: dotnet build -c ${{ env.CONFIGURATION }} | ||
|
||
- name: Pack | ||
run: dotnet pack -c ${{ env.CONFIGURATION }} --property:PackageOutputPath=../../pkgs | ||
|
||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pkgs | ||
path: | | ||
./pkgs/*.nupkg | ||
./pkgs/*.snupkg | ||
- name: Test | ||
run: dotnet test -c ${{ env.CONFIGURATION }} --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=OpenCover /p:CoverletOutput=./Coverage.xml | ||
|
||
- name: Publish Coverage | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: '**/*/Coverage.*.xml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
tags: '*' | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Pack | ||
run: dotnet pack -c Release --property:PackageOutputPath=../../pkgs | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pkgs | ||
path: | | ||
./pkgs/*.nupkg | ||
./pkgs/*.snupkg | ||
Publish_MyGet: | ||
environment: | ||
name: MyGet Gallery | ||
runs-on: ubuntu-latest | ||
needs: Build | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v3 | ||
- name: Push | ||
run: dotnet nuget push **/*.nupkg -k ${{ secrets.MYGET_API_KEY }} -s 'https://www.myget.org/F/reportportal/api/v3/index.json' | ||
|
||
Publish_GitHub: | ||
environment: | ||
name: GitHub Packages | ||
runs-on: ubuntu-latest | ||
needs: Build | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v3 | ||
- name: Push | ||
run: dotnet nuget push **/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s 'https://nuget.pkg.github.com/reportportal/index.json' | ||
|
||
Publish_NuGet: | ||
if: startsWith(github.event.ref, 'refs/tags') | ||
environment: | ||
name: NuGet Gallery | ||
url: https://www.nuget.org/packages/ReportPortal.Shared | ||
runs-on: ubuntu-latest | ||
needs: Build | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v3 | ||
- name: Push | ||
run: dotnet nuget push **/*.nupkg -s 'https://api.nuget.org/v3/index.json' -k ${{secrets.NUGET_API_KEY}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[![Build status](https://ci.appveyor.com/api/projects/status/al55r7ou2wkx67pj?svg=true)](https://ci.appveyor.com/project/nvborisenko/commons-net) | ||
[![CI](https://github.com/reportportal/commons-net/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/commons-net/actions/workflows/ci.yml) | ||
[![NuGet Badge](https://buildstats.info/nuget/reportportal.shared)](https://www.nuget.org/packages/reportportal.shared) | ||
[![Coverage](https://codecov.io/gh/reportportal/commons-net/branch/master/graph/badge.svg)](https://codecov.io/gh/reportportal/commons-net) |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
test/ReportPortal.Shared.Tests/ReportPortal.Shared.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters