GH4520: add slnx support to SolutionParser #2471
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| - hotfix/* | |
| jobs: | |
| prepare: | |
| name: Prepare integration tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "Cake Integration Tests" > cake-integration-tests.txt | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: cake-integration-tests | |
| path: cake-integration-tests.txt | |
| build: | |
| name: Build | |
| needs: prepare | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest, macos-15-intel, ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Get the sources | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install .NET SDK 8.0.x - 9.0.x | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Install .NET SDK (global.json) | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - name: Run Cake script | |
| id: build-cake | |
| uses: cake-build/[email protected] | |
| env: | |
| AZURE_DEVOPS_NUGET_API_KEY: ${{ secrets.AZURE_DEVOPS_NUGET_API_KEY }} | |
| AZURE_DEVOPS_NUGET_API_URL: ${{ secrets.AZURE_DEVOPS_NUGET_API_URL }} | |
| with: | |
| target: GitHubActions | |
| cake-version: tool-manifest | |
| - name: Validate Integration Tests | |
| id: validate-cake | |
| uses: cake-build/[email protected] | |
| with: | |
| script-path: tests/integration/Cake.Common/Build/GitHubActions/ValidateGitHubActionsProvider.cake | |
| cake-version: tool-manifest | |
| arguments: | | |
| CAKE_NETCOREAPP_8_0_VERSION_OS: ${{ steps.build-cake.outputs.CAKE_NETCOREAPP_8_0_VERSION_OS }} | |
| CAKE_NETCOREAPP_9_0_VERSION_OS: ${{ steps.build-cake.outputs.CAKE_NETCOREAPP_9_0_VERSION_OS }} | |
| CAKE_NETCOREAPP_10_0_VERSION_OS: ${{ steps.build-cake.outputs.CAKE_NETCOREAPP_10_0_VERSION_OS }} | |
| ValidateGitHubActionsProvider: true |