From df50dd21ece2b446347e401ec68e345cf8aa440b Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 27 Nov 2021 18:04:42 +0100 Subject: [PATCH] CI: build the source package for the same MINGW_ARCH otherwise its PATH will be empty and makepkg will complains about missing toolchain and error out over missing strip.exe --- .ci/ci-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci-build.sh b/.ci/ci-build.sh index 8524e97dca..fe8081a767 100644 --- a/.ci/ci-build.sh +++ b/.ci/ci-build.sh @@ -42,7 +42,7 @@ for package in "${packages[@]}"; do # Ensure the toolchain is installed before building the package execute 'Installing the toolchain' pacman -S --needed --noconfirm --noprogressbar $MINGW_PACKAGE_PREFIX-toolchain execute 'Building binary' makepkg-mingw --noconfirm --noprogressbar --nocheck --syncdeps --rmdeps --cleanbuild - MINGW_ARCH=mingw64 execute 'Building source' makepkg-mingw --noconfirm --noprogressbar --allsource + execute 'Building source' makepkg-mingw --noconfirm --noprogressbar --allsource echo "::endgroup::" if [ -f $package/.ci-sequential ]; then