Skip to content

[Shim] Update CI

[Shim] Update CI #1

# Syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
# .NET CLI: https://docs.microsoft.com/dotnet/core/tools/
# Description: The purpose of this workflow is to compile and run unit tests.
name: Build And Test, SHIM
on:
workflow_dispatch:
push:
branches: [ "main", "develop", "master" ]
pull_request:
branches: [ "main", "develop", "master" ]
jobs:
build-test-SHIM:
runs-on: ${{ matrix.os }}
env:
SOLUTION: ./SHIM/Microsoft.ApplicationInsights.Shim.sln
TEST_RESULTS_DIRECTORY: ${{ github.workspace }}/TestResults
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
framework: [net462, net472, net480, net481, net8.0, net9.0]
include:
- os: ubuntu-latest
args: "--filter TestCategory!=WindowsOnly"
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/[email protected]
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
8.0.x
9.0.x
- name: Restore
run: dotnet restore ${{ env.SOLUTION }}
- name: Build
run: dotnet build ${{ env.SOLUTION }} --configuration Release --no-restore
- name: Test
id: test1
continue-on-error: true
run: dotnet test ${{ env.SOLUTION }} --framework ${{ matrix.framework }} --configuration Release --no-build --results-directory ${{ env.TEST_RESULTS_DIRECTORY }} --logger:"console;verbosity=detailed" --logger:"trx;logfileprefix=testResults_" ${{ matrix.args }}
- name: Retry tests
if: steps.test1.outcome=='failure'
run: pwsh -f ./.scripts/build_RetryTests.ps1 -TestResultsDirectory ${{ env.TEST_RESULTS_DIRECTORY }} -WorkingDirectory ${{ github.workspace }}