diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2022-02-09 17:24:23 +0900 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-02-11 20:07:55 +0100 |
commit | 9ebfc6ba5b2b136932076c73ec8c14350365a0ac (patch) | |
tree | e95adf8f9c8dedd72e42b70b32ceb257ed67a7b1 /.azure-pipelines.yml | |
parent | fe203a05fb663fa9bc42a9ef9ae51a6ed01a4a90 (diff) | |
download | u-boot-9ebfc6ba5b2b136932076c73ec8c14350365a0ac.tar.gz |
CI: enforce packages upgrade for Msys2 on Windows
We need to install libgnutls-devel package to build the host tool,
mkeficapsule, and as of now, there seems to be a depencency conflict
in the current msys2 installer;
:: installing libp11-kit (0.24.1-1) breaks dependency \
'libp11-kit=0.23.22' required by p11-kit
To resolve this conflict, however, the initial "pacman -Syyuu" in
'tools_only_windows' job is not enough. Another "pacman -Su" will
enforce all the out-of-date packages being upgraded.
(Probably the first "-Syyuu" can be changed to "-Syu".)
See the installation steps in
https://www.msys2.org/
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 81ab77e134..b532abc2c3 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -23,6 +23,7 @@ stages: - script: | sfx.exe -y -o%CD:~0,2%\ %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syyuu" + %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Su" displayName: 'Update MSYS2' - script: | %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy make gcc bison flex diffutils openssl-devel" |