Bump Microsoft.Extensions.DependencyModel from 9.0.2 to 9.0.3 in the extensions group #153
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
| # Builds and runs tests in all three supported OSes | |
| # Pushes CI feed if secrets.SLEET_CONNECTION is provided | |
| name: build | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| configuration: | |
| type: choice | |
| description: Configuration | |
| options: | |
| - Release | |
| - Debug | |
| push: | |
| branches: [ main, dev, 'dev/*', 'feature/*', 'rel/*' ] | |
| paths-ignore: | |
| - changelog.md | |
| - readme.md | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| env: | |
| DOTNET_NOLOGO: true | |
| PackOnBuild: true | |
| GeneratePackageOnBuild: true | |
| VersionPrefix: 42.42.${{ github.run_number }} | |
| VersionLabel: ${{ github.ref }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| MSBUILDTERMINALLOGGER: auto | |
| Configuration: ${{ github.event.inputs.configuration || 'Release' }} | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| os-matrix: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| matrix: ${{ steps.lookup.outputs.matrix }} | |
| steps: | |
| - name: 🤘 checkout | |
| uses: actions/checkout@v4 | |
| - name: 🔎 lookup | |
| id: lookup | |
| shell: pwsh | |
| run: | | |
| $path = './.github/workflows/os-matrix.json' | |
| $os = if (test-path $path) { cat $path } else { '["ubuntu-latest"]' } | |
| echo "matrix=$os" >> $env:GITHUB_OUTPUT | |
| build: | |
| needs: os-matrix | |
| name: build-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ${{ fromJSON(needs.os-matrix.outputs.matrix) }} | |
| steps: | |
| - name: 🤘 checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: ⚙ dotnet | |
| if: matrix.os != 'windows-latest' | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 6.x | |
| 8.x | |
| 9.x | |
| - name: ⏬ download | |
| run: | | |
| gh release download --output obj/win-x86_64.zip --clobber -p *CLI*-win-x86_64.zip --repo HandBrake/HandBrake | |
| unzip obj/win-x86_64.zip -d src/handbrake.win/runtime | |
| - name: 🙏 build | |
| run: dotnet build -m:1 -bl:build.binlog | |
| - name: 🧪 test | |
| run: | | |
| dotnet tool update -g dotnet-retest | |
| dotnet retest -- --no-build | |
| - name: 🐛 logs | |
| uses: actions/upload-artifact@v4 | |
| if: runner.debug && always() | |
| with: | |
| name: logs | |
| path: '*.binlog' | |
| - name: 🚀 sleet | |
| env: | |
| SLEET_CONNECTION: ${{ secrets.SLEET_CONNECTION }} | |
| if: env.SLEET_CONNECTION != '' | |
| run: | | |
| dotnet tool update sleet -g --allow-downgrade --version $(curl -s --compressed ${{ vars.SLEET_FEED_URL }} | jq '.["sleet:version"]' -r) | |
| sleet push bin --config none -f --verbose -p "SLEET_FEED_CONTAINER=nuget" -p "SLEET_FEED_CONNECTIONSTRING=${{ secrets.SLEET_CONNECTION }}" -p "SLEET_FEED_TYPE=azure" || echo "No packages found" | |
| dotnet-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🤘 checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: ✓ ensure format | |
| run: | | |
| dotnet format whitespace --verify-no-changes -v:diag --exclude ~/.nuget | |
| dotnet format style --verify-no-changes -v:diag --exclude ~/.nuget |