Move away from the local cache files to the Az CLI metadata service #619
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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| name: .NET | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.400 | |
| - name: Build | |
| shell: pwsh | |
| run: | | |
| Import-Module ./build.psm1 -Force | |
| Start-Build -Verbose | |
| build-windows: | |
| runs-on: windows-latest | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.400 | |
| - name: Build | |
| shell: pwsh | |
| run: | | |
| Import-Module ./build.psm1 -Force | |
| Start-Build -Verbose | |
| build-macos: | |
| runs-on: macos-latest | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.400 | |
| - name: Build | |
| shell: pwsh | |
| run: | | |
| Import-Module ./build.psm1 -Force | |
| Start-Build -Verbose |