Re: [PATCH v2 30/30] CI: Enable sandbox build for Windows

2023-05-03 Thread Bin Meng
Hi Simon,

On Sun, Apr 30, 2023 at 9:30 AM Simon Glass  wrote:
>
> Add a new rule to build sandbox for Windows. For now, no tests are run in
> this configuration.
>
> Signed-off-by: Simon Glass 
> ---
>
> Changes in v2:
> - Update the cover letter to better explain the motivation
>
>  .azure-pipelines.yml | 27 +++
>  1 file changed, 27 insertions(+)
>
> diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
> index 76ffdeebd667..d15a86ff3650 100644
> --- a/.azure-pipelines.yml
> +++ b/.azure-pipelines.yml
> @@ -39,6 +39,33 @@ stages:
># Tell MSYS2 not to ‘cd’ our startup directory to HOME
>CHERE_INVOKING: yes
>
> +  - job: sandbox_windows
> +displayName: 'Ensure sandbox build for Windows'
> +pool:
> +  vmImage: $(windows_vm)
> +steps:
> +  - powershell: |
> +  (New-Object 
> Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2021-06-04/msys2-base-x86_64-20210604.sfx.exe;,
>  "sfx.exe")
> +displayName: 'Install MSYS2'
> +  - script: |
> +  sfx.exe -y -o%CD:~0,2%\
> +  %CD:~0,2%\msys64\usr\bin\bash -lc " "
> +  %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
> +  %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
> +displayName: 'Update MSYS2'
> +  - script: |
> +  %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy 
> bc bison diffutils flex gcc libgnutls-devel libutil-linux-devel make 
> openssl-devel python python-setuptools swig"
> +displayName: 'Install Toolchain'
> +  - script: |
> +  echo make sandbox_defconfig all > build-tools.sh

nits: build-sandbox.sh

> +  %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
> +displayName: 'Build sandbox'
> +env:
> +  # Tell MSYS2 we need a POSIX emulation layer
> +  MSYSTEM: MSYS
> +  # Tell MSYS2 not to ‘cd’ our startup directory to HOME
> +  CHERE_INVOKING: yes

Missed turning on symbolic link config for MSYS2

MSYS: winsymlinks:native

> +
>- job: tools_only_macOS
>  displayName: 'Ensure host tools build for macOS X'
>  pool:

Regards,
Bin


[PATCH v2 30/30] CI: Enable sandbox build for Windows

2023-04-29 Thread Simon Glass
Add a new rule to build sandbox for Windows. For now, no tests are run in
this configuration.

Signed-off-by: Simon Glass 
---

Changes in v2:
- Update the cover letter to better explain the motivation

 .azure-pipelines.yml | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 76ffdeebd667..d15a86ff3650 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -39,6 +39,33 @@ stages:
   # Tell MSYS2 not to ‘cd’ our startup directory to HOME
   CHERE_INVOKING: yes
 
+  - job: sandbox_windows
+displayName: 'Ensure sandbox build for Windows'
+pool:
+  vmImage: $(windows_vm)
+steps:
+  - powershell: |
+  (New-Object 
Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2021-06-04/msys2-base-x86_64-20210604.sfx.exe;,
 "sfx.exe")
+displayName: 'Install MSYS2'
+  - script: |
+  sfx.exe -y -o%CD:~0,2%\
+  %CD:~0,2%\msys64\usr\bin\bash -lc " "
+  %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
+  %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
+displayName: 'Update MSYS2'
+  - script: |
+  %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy 
bc bison diffutils flex gcc libgnutls-devel libutil-linux-devel make 
openssl-devel python python-setuptools swig"
+displayName: 'Install Toolchain'
+  - script: |
+  echo make sandbox_defconfig all > build-tools.sh
+  %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
+displayName: 'Build sandbox'
+env:
+  # Tell MSYS2 we need a POSIX emulation layer
+  MSYSTEM: MSYS
+  # Tell MSYS2 not to ‘cd’ our startup directory to HOME
+  CHERE_INVOKING: yes
+
   - job: tools_only_macOS
 displayName: 'Ensure host tools build for macOS X'
 pool:
-- 
2.40.1.495.gc816e09b53d-goog