diff mbox series

[2/4] azure: Drop 32-bit MSYS2 build

Message ID 1595927204-27088-2-git-send-email-bmeng.cn@gmail.com
State Accepted
Commit f7faddf632c6471073aa295115591f0433988658
Delegated to: Tom Rini
Headers show
Series [1/4] azure: Use a login shell everywhere for MSYS2 build | expand

Commit Message

Bin Meng July 28, 2020, 9:06 a.m. UTC
As of 2020-05-17, 32-bit MSYS2 is no longer actively supported by
the upstream [1]. Let's drop the 32-bit Windows host tool build.

[1] https://www.msys2.org/news/#2020-05-17-32-bit-msys2-no-longer-actively-supported

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 .azure-pipelines.yml | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

Comments

Tom Rini July 28, 2020, 3:53 p.m. UTC | #1
On Tue, Jul 28, 2020 at 02:06:42AM -0700, Bin Meng wrote:

> As of 2020-05-17, 32-bit MSYS2 is no longer actively supported by
> the upstream [1]. Let's drop the 32-bit Windows host tool build.
> 
> [1] https://www.msys2.org/news/#2020-05-17-32-bit-msys2-no-longer-actively-supported
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 69aa69a..69d4358 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -14,27 +14,19 @@  jobs:
     displayName: 'Ensure host tools build for Windows'
     pool:
       vmImage: $(windows_vm)
-    strategy:
-      matrix:
-        i686:
-          MSYS_DIR: msys32
-          BASE_REPO: msys2-ci-base-i686
-        x86_64:
-          MSYS_DIR: msys64
-          BASE_REPO: msys2-ci-base
     steps:
       - script: |
-          git clone https://github.com/msys2/$(BASE_REPO).git %CD:~0,2%\$(MSYS_DIR)
+          git clone https://github.com/msys2/msys2-ci-base.git %CD:~0,2%\msys64
         displayName: 'Install MSYS2'
       - script: |
-          %CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "pacman --noconfirm -Syyuu"
+          %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syyuu"
         displayName: 'Update MSYS2'
       - script: |
-          %CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "pacman --noconfirm --needed -S make gcc bison diffutils openssl-devel"
+          %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -S make gcc bison diffutils openssl-devel"
         displayName: 'Install Toolchain'
       - script: |
           echo make tools-only_defconfig tools-only NO_SDL=1 > build-tools.sh
-          %CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "bash build-tools.sh"
+          %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
         displayName: 'Build Host Tools'
         env:
           # Tell MSYS2 we need a POSIX emulation layer