Update changelog for 1.39.11 release #765
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
name: 'Tests' | |
env: | |
DotNetVersion: "8.0.100" | |
DotNetVersion2: "7.0.404" | |
DotNetVersion3: "6.0.203" # This is the last version Mono supports. It is used for our Mono CI tests. | |
NuGetVersion: "6.5.0" | |
MonoVersion: "6.12.0" | |
Artifacts: ${{ github.workspace }}/artifacts/ | |
Coverage: ${{ github.workspace }}/coverage/ | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true" | |
defaults: | |
run: | |
shell: pwsh | |
on: | |
pull_request: | |
branches: | |
- master | |
- feature/* | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-2022, macos-11] | |
testProjects: | |
- OmniSharp.MSBuild.Tests,OmniSharp.Roslyn.CSharp.Tests,OmniSharp.Cake.Tests,OmniSharp.Script.Tests,OmniSharp.Stdio.Tests,OmniSharp.Http.Tests,OmniSharp.Tests,OmniSharp.Lsp.Tests | |
- OmniSharp.DotNetTest.Tests | |
name: 'Test' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
clean: 'false' | |
fetch-depth: '0' | |
# TODO: Need to figure out the correct way to install mono on linux / mac | |
# Currently the latest image has mono 6.12 | |
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md | |
# - name: 🔨 Use Mono ${{ env.MonoVersion }} SDK | |
# uses: maxim-lobanov/setup-xamarin@v1 | |
# with: | |
# mono-version: ${{ env.MonoVersion }} | |
- name: Setup NuGet.exe | |
uses: nuget/setup-nuget@v1 | |
with: | |
nuget-version: ${{ env.NuGetVersion }} | |
- name: 🔨 Use .NET Core SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
${{ env.DotNetVersion3 }} | |
${{ env.DotNetVersion2 }} | |
${{ env.DotNetVersion }} | |
- name: 🎁 dotnet tool restore | |
run: | | |
dotnet tool restore | |
- name: 🎁 nuget install | |
run: | | |
nuget install tools/packages.config -ExcludeVersion -OutputDirectory tools | |
- name: 🍰 Run Cake | |
uses: nick-invision/retry@v2 | |
with: | |
shell: bash | |
timeout_minutes: 40 | |
max_attempts: 3 | |
retry_on: error | |
command: | | |
dotnet cake --configuration=Release --verbosity=Verbose --target=Test --test-project="$TEST_PROJECT" | |
env: | |
TEST_PROJECT: ${{ matrix.testProjects }} | |
- name: ⬆ Publish Logs | |
uses: actions/upload-artifact@v2 | |
continue-on-error: true | |
if: ${{ always() }} | |
with: | |
name: 'logs - ${{ github.workflow }} ${{ matrix.os }}' | |
path: '${{ env.Artifacts }}/logs/' |