Fix sparse vmlinuz boot failure on XFS by changing cp --sparse to auto #2012
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
| # Copyright (c) Microsoft Corporation. | |
| # Licensed under the MIT License. | |
| name: Build (dev) | |
| permissions: {} | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release/* | |
| # Allow pipeline to be run manually. | |
| workflow_dispatch: | |
| inputs: | |
| runFunctionalTests: | |
| description: Run functional tests | |
| required: true | |
| type: boolean | |
| default: false | |
| runVMTests: | |
| description: Run VMTests suite | |
| required: true | |
| type: boolean | |
| default: false | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build.yml | |
| with: | |
| publishType: dev | |
| runFunctionalTests: ${{ inputs.runFunctionalTests || false }} | |
| runVMTests: ${{ inputs.runVMTests || false }} | |
| permissions: | |
| contents: read | |
| # Azure login. | |
| id-token: write |