-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use GitHub Actions for CI and release (#2091)
* Use GitHub Actions * Add sign and release * update with latest version * xcode 15.3 * Update dotnet-build.yml * Update dotnet-build.yml * Update azure-pipelines.yml * Disable Azure Pipelines for PRs * Update azure-pipelines.yml --------- Co-authored-by: Gerald Versluis <[email protected]>
- Loading branch information
1 parent
f359148
commit 1412e57
Showing
3 changed files
with
284 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/CommunityToolkit.* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,270 @@ | ||
name: .NET | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '*' | ||
paths-ignore: | ||
- README.md | ||
pull_request: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- README.md | ||
|
||
env: | ||
CurrentSemanticVersionBase: '99.0.0' | ||
PreviewNumber: ${{ github.run_number }} | ||
CurrentSemanticVersion: '99.0.0-preview${{ github.run_number }}' | ||
NugetPackageVersion: '99.0.0-preview${{ github.run_number }}' | ||
NugetPackageVersionCamera: '99.0.0-preview${{ github.run_number }}' | ||
NugetPackageVersionMediaElement: '99.0.0-preview${{ github.run_number }}' | ||
NugetPackageVersionMaps: '99.0.0-preview${{ github.run_number }}' | ||
TOOLKIT_NET_VERSION: '9.0.102' | ||
LATEST_NET_VERSION: '9.0.x' | ||
PathToLibrarySolution: 'src/CommunityToolkit.Maui.sln' | ||
PathToSamplesSolution: 'samples/CommunityToolkit.Maui.Sample.sln' | ||
PathToCommunityToolkitCsproj: 'src/CommunityToolkit.Maui/CommunityToolkit.Maui.csproj' | ||
PathToCommunityToolkitCoreCsproj: 'src/CommunityToolkit.Maui.Core/CommunityToolkit.Maui.Core.csproj' | ||
PathToCommunityToolkitCameraCsproj: 'src/CommunityToolkit.Maui.Camera/CommunityToolkit.Maui.Camera.csproj' | ||
PathToCommunityToolkitMediaElementCsproj: 'src/CommunityToolkit.Maui.MediaElement/CommunityToolkit.Maui.MediaElement.csproj' | ||
PathToCommunityToolkitMapsCsproj: 'src/CommunityToolkit.Maui.Maps/CommunityToolkit.Maui.Maps.csproj' | ||
PathToCommunityToolkitSampleCsproj: 'samples/CommunityToolkit.Maui.Sample/CommunityToolkit.Maui.Sample.csproj' | ||
PathToCommunityToolkitUnitTestCsproj: 'src/CommunityToolkit.Maui.UnitTests/CommunityToolkit.Maui.UnitTests.csproj' | ||
PathToCommunityToolkitAnalyzersCsproj: 'src/CommunityToolkit.Maui.Analyzers/CommunityToolkit.Maui.Analyzers.csproj' | ||
PathToCommunityToolkitCameraAnalyzersCsproj: 'src/CommunityToolkit.Maui.Camera.Analyzers/CommunityToolkit.Maui.Camera.Analyzers.csproj' | ||
PathToCommunityToolkitMediaElementAnalyzersCsproj: 'src/CommunityToolkit.Maui.MediaElement.Analyzers/CommunityToolkit.Maui.MediaElement.Analyzers.csproj' | ||
PathToCommunityToolkitSourceGeneratorsCsproj: 'src/CommunityToolkit.Maui.SourceGenerators/CommunityToolkit.Maui.SourceGenerators.csproj' | ||
PathToCommunityToolkitSourceGeneratorsInternalCsproj: 'src/CommunityToolkit.Maui.SourceGenerators.Internal/CommunityToolkit.Maui.SourceGenerators.Internal.csproj' | ||
PathToCommunityToolkitAnalyzersCodeFixCsproj: 'src/CommunityToolkit.Maui.Analyzers.CodeFixes/CommunityToolkit.Maui.Analyzers.CodeFixes.csproj' | ||
PathToCommunityToolkitCameraAnalyzersCodeFixCsproj: 'src/CommunityToolkit.Maui.Camera.Analyzers.CodeFixes/CommunityToolkit.Maui.Camera.Analyzers.CodeFixes.csproj' | ||
PathToCommunityToolkitMediaElementAnalyzersCodeFixCsproj: 'src/CommunityToolkit.Maui.MediaElement.Analyzers.CodeFixes/CommunityToolkit.Maui.MediaElement.Analyzers.CodeFixes.csproj' | ||
PathToCommunityToolkitAnalyzersUnitTestCsproj: 'src/CommunityToolkit.Maui.Analyzers.UnitTests/CommunityToolkit.Maui.Analyzers.UnitTests.csproj' | ||
DotNetMauiRollbackFile: 'https://maui.blob.core.windows.net/metadata/rollbacks/8.0.6.json' | ||
CommunityToolkitSampleApp_Xcode_Version: '16.2' | ||
CommunityToolkitLibrary_Xcode_Version: '16.2' | ||
|
||
jobs: | ||
build_sample: | ||
name: Build Sample App using Latest .NET SDK | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, macos-15] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@main | ||
|
||
- name: Set Xcode version | ||
if: runner.os == 'macOS' | ||
run: | | ||
sudo xcode-select --switch /Applications/Xcode_${{ env.CommunityToolkitSampleApp_Xcode_Version }}.app/Contents/Developer | ||
- name: Install Latest .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.LATEST_NET_VERSION }} | ||
|
||
- name: Install .NET MAUI Workload | ||
run: dotnet workload install maui | ||
|
||
- name: Install Tizen Workload | ||
run: | | ||
Invoke-WebRequest 'https://raw.githubusercontent.com/Samsung/Tizen.NET/main/workload/scripts/workload-install.ps1' -OutFile 'workload-install.ps1' | ||
.\workload-install.ps1 | ||
shell: pwsh | ||
|
||
- name: Display dotnet info | ||
run: dotnet --info | ||
|
||
- name: Build Community Toolkit Sample | ||
run: dotnet build -c Release ${{ env.PathToCommunityToolkitSampleCsproj }} | ||
|
||
build_library: | ||
name: Build Library | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, macos-15] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@main | ||
|
||
- name: Set NuGet Version to Tag Number | ||
if: startsWith(github.ref, 'refs/tags/') && !endsWith(github.ref, '-mediaelement') | ||
run: echo "NugetPackageVersion=${{ github.ref }}" >> $GITHUB_ENV | ||
|
||
- name: Set NuGet Version to Tag Number for Camera | ||
if: startsWith(github.ref, 'refs/tags/') && endsWith(github.ref, '-camera') | ||
run: echo "NugetPackageVersionCamera=${{ github.ref }}" >> $GITHUB_ENV | ||
|
||
- name: Set NuGet Version to Tag Number for MediaElement | ||
if: startsWith(github.ref, 'refs/tags/') && endsWith(github.ref, '-mediaelement') | ||
run: echo "NugetPackageVersionMediaElement=${{ github.ref }}" >> $GITHUB_ENV | ||
|
||
- name: Set NuGet Version to Tag Number for Maps | ||
if: startsWith(github.ref, 'refs/tags/') && endsWith(github.ref, '-maps') | ||
run: echo "NugetPackageVersionMaps=${{ github.ref }}" >> $GITHUB_ENV | ||
|
||
- name: Set NuGet Version to PR Version | ||
if: ${{ github.event_name == 'pull_request' }} | ||
run: | | ||
echo "NugetPackageVersion=${{ env.CurrentSemanticVersionBase }}-build-${{ github.event.pull_request.number }}.${{ github.run_number }}+${{ github.sha }}" | ||
echo "NugetPackageVersionMediaElement=${{ env.CurrentSemanticVersionBase }}-build-${{ github.event.pull_request.number }}.${{ github.run_number }}+${{ github.sha }}" | ||
echo "NugetPackageVersionMaps=${{ env.CurrentSemanticVersionBase }}-build-${{ github.event.pull_request.number }}.${{ github.run_number }}+${{ github.sha }}" | ||
shell: bash | ||
|
||
- name: Set Xcode version | ||
if: runner.os == 'macOS' | ||
run: | | ||
sudo xcode-select --switch /Applications/Xcode_${{ env.CommunityToolkitLibrary_Xcode_Version }}.app/Contents/Developer | ||
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.TOOLKIT_NET_VERSION }} | ||
|
||
- name: Install .NET MAUI Workload | ||
run: dotnet workload install maui --skip-sign-check --source https://api.nuget.org/v3/index.json | ||
|
||
- name: Install Tizen Workload | ||
run: | | ||
Invoke-WebRequest 'https://raw.githubusercontent.com/Samsung/Tizen.NET/main/workload/scripts/workload-install.ps1' -OutFile 'workload-install.ps1' | ||
.\workload-install.ps1 | ||
shell: pwsh | ||
|
||
- name: Display dotnet info | ||
run: dotnet --info | ||
|
||
- name: Build CommunityToolkit.Maui | ||
run: dotnet build -c Release ${{ env.PathToLibrarySolution }} | ||
|
||
- name: Run CommunityToolkit.Maui.UnitTests | ||
run: dotnet test -c Release ${{ env.PathToLibrarySolution }} --settings ".runsettings" --collect "XPlat code coverage" --logger trx --results-directory ${{ runner.temp }} | ||
|
||
- name: Publish Test Results | ||
if: runner.os == 'Windows' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Test Results | ||
path: | | ||
${{ runner.temp }}/**/*.trx | ||
- name: Pack CommunityToolkit.Maui.Core NuGet | ||
run: dotnet pack -c Release ${{ env.PathToCommunityToolkitCoreCsproj }} -p:PackageVersion=${{ env.NugetPackageVersion }} | ||
|
||
- name: Pack CommunityToolkit.Maui NuGet | ||
run: dotnet pack -c Release ${{ env.PathToCommunityToolkitCsproj }} -p:PackageVersion=${{ env.NugetPackageVersion }} | ||
|
||
- name: Pack CommunityToolkit.Maui.Camera NuGet | ||
run: dotnet pack -c Release ${{ env.PathToCommunityToolkitCameraCsproj }} -p:PackageVersion=${{ env.NugetPackageVersionCamera }} | ||
|
||
- name: Pack CommunityToolkit.Maui.MediaElement NuGet | ||
run: dotnet pack -c Release ${{ env.PathToCommunityToolkitMediaElementCsproj }} -p:PackageVersion=${{ env.NugetPackageVersionMediaElement }} | ||
|
||
- name: Pack CommunityToolkit.Maui.Maps NuGet | ||
run: dotnet pack -c Release ${{ env.PathToCommunityToolkitMapsCsproj }} -p:PackageVersion=${{ env.NugetPackageVersionMaps }} | ||
|
||
- name: Copy NuGet Packages to Staging Directory | ||
if: runner.os == 'Windows' && !startsWith(github.ref, 'refs/tags/') | ||
run: | | ||
mkdir -p ${{ github.workspace }}/nuget | ||
Get-ChildItem -Path "./src" -Recurse | Where-Object { $_.Extension -match "nupkg" } | Copy-Item -Destination "${{ github.workspace }}/nuget" | ||
shell: pwsh | ||
|
||
- name: Upload Package List | ||
uses: actions/upload-artifact@v4 | ||
if: runner.os == 'Windows' | ||
with: | ||
name: nuget-list | ||
if-no-files-found: error | ||
path: | | ||
${{ github.workspace }}/.github/workflows/SignClientFileList.txt | ||
- name: Publish Packages | ||
if: runner.os == 'Windows' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: packages | ||
path: ${{ github.workspace }}/nuget/ | ||
|
||
sign: | ||
needs: [build_library] | ||
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/rel/') }} | ||
runs-on: windows-latest | ||
permissions: | ||
id-token: write # Required for requesting the JWT | ||
|
||
steps: | ||
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.TOOLKIT_NET_VERSION }} | ||
|
||
- name: Download NuGet List | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nuget-list | ||
path: ./ | ||
|
||
- name: Download Package List | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: packages | ||
path: ./packages | ||
|
||
- name: Install Signing Tool | ||
run: dotnet tool install --tool-path ./tools sign --version 0.9.1-beta.23356.1 | ||
|
||
- name: Sign Packages | ||
run: > | ||
./tools/sign code azure-key-vault | ||
**/*.nupkg | ||
--base-directory "${{ github.workspace }}/packages" | ||
--file-list "${{ github.workspace }}/SignClientFileList.txt" | ||
--timestamp-url "http://timestamp.digicert.com" | ||
--publisher-name ".NET Foundation" | ||
--description "Community Toolkit MAUI" | ||
--description-url "https://github.com/CommunityToolkit/Maui" | ||
--azure-key-vault-url "${{ secrets.SIGN_KEY_VAULT_URL }}" | ||
--azure-key-vault-client-id ${{ secrets.SIGN_CLIENT_ID }} | ||
--azure-key-vault-client-secret "${{ secrets.SIGN_CLIENT_SECRET }}" | ||
--azure-key-vault-tenant-id ${{ secrets.SIGN_TENANT_ID }} | ||
--azure-key-vault-certificate "${{ secrets.SIGN_CERTIFICATE }}" | ||
--verbosity Information | ||
- name: Publish Packages | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: signed-packages | ||
if-no-files-found: error | ||
path: | | ||
${{ github.workspace }}/packages/**/*.nupkg | ||
release: | ||
if: ${{ startsWith(github.ref, 'refs/heads/rel/') }} | ||
needs: [sign] | ||
environment: nuget-release-gate # This gates this job until manually approved | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.TOOLKIT_NET_VERSION }} | ||
|
||
- name: Download signed packages for ${{ matrix.platform }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: signed-packages | ||
path: ./packages | ||
|
||
- name: Push to NuGet.org | ||
run: > | ||
dotnet nuget push | ||
**/*.nupkg | ||
--source https://api.nuget.org/v3/index.json | ||
--api-key ${{ secrets.NUGET_PACKAGE_PUSH_TOKEN }} | ||
--skip-duplicate |
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