From b38b5bab5b4397407e140410c330edaa741688b2 Mon Sep 17 00:00:00 2001 From: Marek Habersack Date: Wed, 26 Jul 2023 19:03:04 +0200 Subject: [PATCH] Don't compress Windows binaries with UPX --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 727f3fc..da381f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,15 +174,15 @@ jobs: - name: build Windows LLVM run: ./build-llvm.cmd - - name: Download UPX - run: ./download-upx.ps1 - - - name: Compress LLVM utilities with UPX - run: | - ./upx.exe -9 -v .\artifacts\windows\bin\llc.exe - ./upx.exe -9 -v .\artifacts\windows\bin\lld.exe - ./upx.exe -9 -v .\artifacts\windows\bin\llvm-mc.exe - ./upx.exe -9 -v .\artifacts\windows\bin\llvm-strip.exe +# - name: Download UPX +# run: ./download-upx.ps1 + +# - name: Compress LLVM utilities with UPX +# run: | +# ./upx.exe -9 -v .\artifacts\windows\bin\llc.exe +# ./upx.exe -9 -v .\artifacts\windows\bin\lld.exe +# ./upx.exe -9 -v .\artifacts\windows\bin\llvm-mc.exe +# ./upx.exe -9 -v .\artifacts\windows\bin\llvm-strip.exe - name: package LLVM artifacts run: 7z a artifacts-windows-llvm.7z artifacts