.gitlab-ci.d/windows.yml: Unify the prerequisite packages

At present the prerequisite packages for 64-bit and 32-bit builds
are slightly different. Let's use the same packages for both for
easier maintenance in the future.

Signed-off-by: Bin Meng <bin.meng@windriver.com>
Message-Id: <20221125114100.3184790-1-bmeng.cn@gmail.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
Bin Meng 2022-11-25 19:40:57 +08:00 committed by Thomas Huth
parent 44c397b279
commit 14547e0877
1 changed files with 11 additions and 1 deletions

View File

@ -41,11 +41,15 @@ msys2-64bit:
mingw-w64-x86_64-gcc mingw-w64-x86_64-gcc
mingw-w64-x86_64-glib2 mingw-w64-x86_64-glib2
mingw-w64-x86_64-gnutls mingw-w64-x86_64-gnutls
mingw-w64-x86_64-gtk3
mingw-w64-x86_64-libgcrypt
mingw-w64-x86_64-libjpeg-turbo
mingw-w64-x86_64-libnfs mingw-w64-x86_64-libnfs
mingw-w64-x86_64-libpng mingw-w64-x86_64-libpng
mingw-w64-x86_64-libssh mingw-w64-x86_64-libssh
mingw-w64-x86_64-libtasn1 mingw-w64-x86_64-libtasn1
mingw-w64-x86_64-libusb mingw-w64-x86_64-libusb
mingw-w64-x86_64-lzo2
mingw-w64-x86_64-nettle mingw-w64-x86_64-nettle
mingw-w64-x86_64-ninja mingw-w64-x86_64-ninja
mingw-w64-x86_64-pixman mingw-w64-x86_64-pixman
@ -79,16 +83,22 @@ msys2-32bit:
mingw-w64-i686-gtk3 mingw-w64-i686-gtk3
mingw-w64-i686-libgcrypt mingw-w64-i686-libgcrypt
mingw-w64-i686-libjpeg-turbo mingw-w64-i686-libjpeg-turbo
mingw-w64-i686-libnfs
mingw-w64-i686-libpng
mingw-w64-i686-libssh mingw-w64-i686-libssh
mingw-w64-i686-libtasn1 mingw-w64-i686-libtasn1
mingw-w64-i686-libusb mingw-w64-i686-libusb
mingw-w64-i686-lzo2 mingw-w64-i686-lzo2
mingw-w64-i686-nettle
mingw-w64-i686-ninja mingw-w64-i686-ninja
mingw-w64-i686-pixman mingw-w64-i686-pixman
mingw-w64-i686-pkgconf mingw-w64-i686-pkgconf
mingw-w64-i686-python mingw-w64-i686-python
mingw-w64-i686-SDL2
mingw-w64-i686-SDL2_image
mingw-w64-i686-snappy mingw-w64-i686-snappy
mingw-w64-i686-usbredir " mingw-w64-i686-usbredir
mingw-w64-i686-zstd "
- $env:CHERE_INVOKING = 'yes' # Preserve the current working directory - $env:CHERE_INVOKING = 'yes' # Preserve the current working directory
- $env:MSYSTEM = 'MINGW32' # Start a 32-bit MinG environment - $env:MSYSTEM = 'MINGW32' # Start a 32-bit MinG environment
- $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink - $env:MSYS = 'winsymlinks:native' # Enable native Windows symlink