Update to Aspire 9.1 (#521) #1259
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: .NET Aspire Samples CI | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- "**/*.md" | |
- "**/*.gitignore" | |
- "**/*.gitattributes" | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
- "**/*.gitignore" | |
- "**/*.gitattributes" | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
name: Build & Test Samples | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
DOTNET_MULTILEVEL_LOOKUP: false | |
DOTNET_INSTALL_DIR: ${{ matrix.os == 'ubuntu-latest' && '' || 'dotnet' }} | |
ASPIRE_ALLOW_UNSECURED_TRANSPORT: true | |
SuppressNETCoreSdkPreviewMessage: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Azure Functions Core Tools | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
wget -q https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb | |
sudo dpkg -i packages-microsoft-prod.deb | |
sudo apt-get update | |
sudo apt-get install azure-functions-core-tools-4 | |
- name: Install .NET SDK (global.json) | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: ${{ matrix.os == 'ubuntu-latest' && './global.json' || '.\global.json' }} | |
dotnet-version: | | |
8.0.x | |
- name: Print .NET info | |
run: dotnet --info | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install & trust dev-certs | |
id: install-dev-certs | |
# Trusting certs on Windows throws a prompt so will halt the build | |
if: matrix.os == 'ubuntu-latest' | |
run: dotnet dev-certs https --trust | |
- name: Build | |
run: ${{ matrix.os == 'ubuntu-latest' && './build.sh' || '.\build.cmd' }} | |
- name: Test | |
id: test | |
# We only test on Ubuntu because Windows agents don't support Docker with WSL | |
if: matrix.os == 'ubuntu-latest' | |
# Note that the space after the last double dash (--) is intentional | |
run: > | |
dotnet test ./tests/SamplesTests.sln | |
--logger console --logger trx --logger html --logger GitHubActions | |
--results-directory ./TestResults --blame | |
-- | |
RunConfiguration.CollectSourceInformation=true | |
- name: Publish Test Results | |
if: (success() || steps.test.conclusion == 'failure') && matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TestResults_${{ matrix.os }} | |
path: ./TestResults |