improve comm tests stability #64
Workflow file for this run
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
types: [opened, reopened, edited] | |
jobs: | |
build-publish-deploy-win: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./ShareClipbrd/ShareClipbrd.sln | |
- name: Build | |
run: dotnet build ./ShareClipbrd/ShareClipbrd.sln --no-restore | |
- name: Test | |
run: dotnet test ./ShareClipbrd/ShareClipbrd.sln --no-build --verbosity normal | |
- name: Publish | |
run: | | |
dotnet publish "./ShareClipbrd\ShareClipbrdApp/ShareClipbrdApp.csproj" -c PublishRelease -r win-x64 -f net7.0-windows -p:PublishSingleFile=true --self-contained false -o "./out/win64" -p:DebugType=None | |
- name: Deploy Win64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: win64 | |
path: ./out/win64/ | |
retention-days: 90 | |
build-publish-deploy-linux: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./ShareClipbrd/ShareClipbrd.sln | |
- name: Build | |
run: dotnet build ./ShareClipbrd/ShareClipbrd.sln --no-restore | |
- name: Test | |
run: dotnet test ./ShareClipbrd/ShareClipbrd.sln --no-build --verbosity normal | |
- name: Publish | |
run: | | |
dotnet publish "./ShareClipbrd/ShareClipbrdApp/ShareClipbrdApp.csproj" -c PublishRelease -r linux-x64 -f net7.0 -p:PublishSingleFile=true --self-contained false -o "./out/_linux64" -p:DebugType=None | |
- name: Tar Linux64 files | |
run: mkdir -p ./out/linux64 && tar -cjvf ./out/linux64/ShareClipbrd.tar -C ./out/_linux64/ . && rm -rf ./out/_linux64 | |
- name: Deploy Linux64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: linux64 | |
path: ./out/linux64/ShareClipbrd.tar | |
retention-days: 90 | |