Add ACL support: package install, UKI create mode, initramfs regen, and boot flow fixes. #2174
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 |