Skip to content

Package version update #3710

Package version update

Package version update #3710

Workflow file for this run

name: build
on:
push:
branches:
- master
- release-*
- dev-*
- feature-*
tags:
- v*
pull_request:
branches:
- master
- release-*
- dev-*
- feature-*
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
NUPKG_OUTDIR: bin/Release/nugets
steps:
- uses: actions/checkout@v1
- name: Parse release version
run: python ./.github/scripts/get_release_version.py
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x
dotnet-quality: 'ga'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration release --no-restore
- name: Generate Packages
run: dotnet pack --configuration release
- name: Upload packages
uses: actions/upload-artifact@v4
with:
name: packages
path: ${{ env.NUPKG_OUTDIR }}
test:
name: Test .NET ${{ matrix.dotnet-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dotnet-version: ['8.0', '9.0']
include:
- dotnet-version: '8.0'
display-name: '.NET 8.0'
framework: 'net8'
prefix: 'net8'
install-version: '8.0.x'
- dotnet-version: '9.0'
display-name: '.NET 9.0'
framework: 'net9'
prefix: 'net9'
install-version: '9.0.x'
steps:
- uses: actions/checkout@v1
- name: Parse release version
run: python ./.github/scripts/get_release_version.py
- name: Setup ${{ matrix.display-name }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.install-version }}
dotnet-quality: 'ga' # Prefer a GA release, but use the RC if not available
- name: Setup .NET 8 (required)
uses: actions/setup-dotnet@v3
if: ${{ matrix.install-version != '8.0.x' }}
with:
dotnet-version: '8.0.x'
dotnet-quality: 'ga'
- name: Setup .NET 9 (required)
uses: actions/setup-dotnet@v3
if: ${{ matrix.install-version != '9.0.x' }}
with:
dotnet-version: '9.0.x'
dotnet-quality: 'ga'
- name: Build
# disable deterministic builds, just for test run. Deterministic builds break coverage for some reason
run: dotnet build --configuration release /p:GITHUB_ACTIONS=false
- name: Test
id: tests
continue-on-error: true # proceed if tests fail to allow for the report generation in master or next step failure in PR
run: |
dotnet test \
--configuration release \
--framework ${{ matrix.framework }} \
--no-build \
--no-restore \
--filter FullyQualifiedName\!~Dapr.E2E.Test \
--logger "trx;LogFilePrefix=${{ matrix.prefix }}" \
--logger "GitHubActions;report-warnings=false" \
--results-directory "${{ github.workspace }}/TestResults" \
/p:CollectCoverage=true \
/p:CoverletOutputFormat=opencover \
/p:GITHUB_ACTIONS=false
- name: Check test failure in PR
if: github.event_name == 'pull_request' && steps.tests.outcome != 'success'
run: exit 1
- name: Upload test coverage
uses: codecov/codecov-action@v1
with:
flags: ${{ matrix.framework }}
- name: Parse Trx files
uses: NasAmin/[email protected]
id: trx-parser
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository # does not work on PRs from forks
with:
TRX_PATH: ${{ github.workspace }}/TestResults
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
integration-test:
uses: ./.github/workflows/itests.yml
discover:
name: 'Discover Packages'
needs: ['build', 'test', 'integration-test']
runs-on: ubuntu-latest
if: |
startswith(github.ref, 'refs/tags/v') &&
!(endsWith(github.ref, '-rc') || endsWith(github.ref, '-dev') || endsWith(github.ref, '-prerelease'))
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: packages
path: packages
- name: List packages
run: ls packages/*.nupkg
- name: Generate matrix
id: set-matrix
run: |
echo "Generating package matrix..."
files=$(ls packages/*.nupkg | jq -R -s -c 'split("\n")[:-1]')
echo "matrix=$files" >> $GITHUB_OUTPUT
publish:
name: Publish Packages
needs: ['discover']
if: |
startswith(github.ref, 'refs/tags/v') &&
!(endsWith(github.ref, '-rc') || endsWith(github.ref, '-dev') || endsWith(github.ref, '-prerelease'))
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package: ${{ fromJson(needs.discover.outputs.matrix) }}
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: packages
path: packages
- name: Publish ${{ matrix.package }} to NuGet
run: |
dotnet nuget push "${{ matrix.package }}" --skip-duplicate --api-key ${{ secrets.NUGETORG_DAPR_API_KEY }} --source https://api.nuget.org/v3/index.json
# - name: List packages (for sanity check)
# run: ls -R
# working-directory: packages
#
# - name: Publish binaries to github for tags
# if: startswith(github.ref, 'refs/tags/v')
# run: |
# sudo npm install --silent --no-progress -g [email protected]
#
# OWNER_NAME="${GITHUB_REPOSITORY%%/*}"
# REPO_NAME="${GITHUB_REPOSITORY#*/}"
# RELEASE_ARTIFACT=(./packages/*)
#
# export GITHUB_TOKEN=${{ secrets.DAPR_BOT_TOKEN }}
# echo "Uploading Nuget packages to GitHub Release"
# github-release upload \
# --owner $OWNER_NAME \
# --repo $REPO_NAME \
# --body "Release dapr dotnet SDK v${REL_VERSION}" \
# --tag "v${REL_VERSION}" \
# --name "Dapr dotnet SDK v${REL_VERSION}" \
# --prerelease true \
# ${RELEASE_ARTIFACT[*]}
#
# - name: Publish nuget packages to nuget.org
# if: startswith(github.ref, 'refs/tags/v') && !(endsWith(github.ref, '-rc') || endsWith(github.ref, '-dev') || endsWith(github.ref, '-prerelease'))
# run: |
# dotnet nuget push "./packages/Dapr*.nupkg" --skip-duplicate --api-key ${{ secrets.NUGETORG_DAPR_API_KEY }} --source https://api.nuget.org/v3/index.json