diff options
author | Tom Rini <trini@konsulko.com> | 2021-03-26 15:14:14 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-27 09:49:35 -0400 |
commit | f2d259cf4cfe353086de0af13eb84dfba4609416 (patch) | |
tree | 5a25a39ea2c24987c6ae58f711ea6270db361123 | |
parent | daaee297507fb4c9df2cb7bc48bb3e978877dec8 (diff) | |
download | u-boot-WIP/2020-03-27-master-imports.zip u-boot-WIP/2020-03-27-master-imports.tar.gz u-boot-WIP/2020-03-27-master-imports.tar.bz2 |
Azure: Use "pacman -Sy" to install the toolchainWIP/2020-03-27-master-imports
We now see an error such as:
warning: database file for 'ucrt64' does not exist (use '-Sy' to download)
error: failed to prepare transaction (could not find database)
So use -Sy as suggested.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | .azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 506e0c0..a7e27fa 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -23,7 +23,7 @@ jobs: %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syyuu" displayName: 'Update MSYS2' - script: | - %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -S make gcc bison flex diffutils openssl-devel" + %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy make gcc bison flex diffutils openssl-devel" displayName: 'Install Toolchain' - script: | echo make tools-only_defconfig tools-only NO_SDL=1 > build-tools.sh |