Skip to content

Commit 883f72d

Browse files
authored
.sync/azure_pipelines: Switch from microdnf to dnf (#115)
The following commit in tianocore/containers switched from `microdnf` to `dnf` since `microdnf` is no longer available in the Fedora 35 minimal base image. tianocore/containers@3487a34 Therefore, `microdnf` will currently fail (not found). This change updates code using the Fedora 35 container image to switch to `dnf`. Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
1 parent badf2c8 commit 883f72d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.sync/azure_pipelines/custom/mu_feature_config/Ubuntu-GCC5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
do_ci_build: true
3333
do_ci_setup: true
3434
extra_steps:
35-
- script: sudo microdnf install --assumeyes mingw64-gcc
35+
- script: sudo dnf install --assumeyes mingw64-gcc
3636
displayName: Install Windows Resource Compiler for Linux
3737
packages: SetupDataPkg
3838
target_list: DEBUG,RELEASE,NO-TARGET,NOOPT

.sync/azure_pipelines/custom/mu_oem_sample/Ubuntu-GCC5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
do_ci_setup: true
3434
do_non_ci_setup: true
3535
extra_steps:
36-
- script: sudo microdnf install --assumeyes mingw64-gcc
36+
- script: sudo dnf install --assumeyes mingw64-gcc
3737
displayName: Install Windows Resource Compiler for Linux
3838
packages: OemPkg
3939
target_list: DEBUG,RELEASE,NO-TARGET,NOOPT

.sync/azure_pipelines/matrix_dependent/Ubuntu-GCC5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
extra_build_args: CODE_COVERAGE=TRUE CC_HTML=TRUE
3939
extra_install_step:
4040
- script: |
41-
sudo microdnf install --assumeyes mingw64-gcc lcov
41+
sudo dnf install --assumeyes mingw64-gcc lcov
4242
pip install lcov_cobertura pycobertura
4343
displayName: Install Windows Resource Compiler for Linux & Code Coverage Tools
4444
tool_chain_tag: $(tool_chain_tag)

0 commit comments

Comments
 (0)