From ada7cb167f3787939f93eed08733bd65d4abe387 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 26 May 2022 18:11:59 -0500 Subject: [PATCH] strip MinGW builds until I feel like doing a selective strip --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51719327c..bbdc10327 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -225,7 +225,8 @@ jobs: if [ '${{ matrix.config.compiler }}' == 'msvc' ]; then binPath="${binPath}/${{ env.BUILD_TYPE }}" fi - if [ '${{ matrix.config.compiler }}' == 'mingw' ] && [ '${{ env.BUILD_TYPE }}' == 'Release' ]; then + # always strip on MinGW as it generate massive artifacts + if [ '${{ matrix.config.compiler }}' == 'mingw' ]; then # arch-specific strip prefix # TODO maybe extract from cross toolchain files? toolPrefix="-w64-mingw32-"