From 9789ac0fde5e1b8bb48cfa191d39f7bac2c369e2 Mon Sep 17 00:00:00 2001 From: TheRogueZeta <6479694-TheRogueZeta@users.noreply.gitlab.com> Date: Wed, 21 Apr 2021 15:47:12 -0700 Subject: [PATCH] Remove 7z compression on Windows builds --- .gitlab-ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c4d6e3844..bc3e48a75 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -161,11 +161,10 @@ build_windows_32: - _fold_final_ - _fold_start_ 'compressing the release folder so that we can upload it as artifact' - - mv release 'OpenRGB Windows 32-bit' - ${datetime} = Get-Date ([datetime]::UtcNow) -Format "yyyy-MM-ddTHH-mm-ss" - ${revision} = ((git rev-parse --short HEAD) | Out-String).Trim() - ${rversion} = (((Get-Content '..\OpenRGB.pro' | Select-String -Pattern "VERSION =") | Out-String).Trim().Split("="))[1].Trim() - - 7z a -mx9 -r -y "OpenRGB_${rversion}_32_${revision}_nightly_${datetime}.7z" 'OpenRGB Windows 32-bit' + - mv release ../'OpenRGB Windows 32-bit' - _fold_final_ # cache: # key: same-key @@ -173,7 +172,7 @@ build_windows_32: # - C:\vcpkg\installed\ artifacts: paths: - - _build/*.7z + - 'OpenRGB Windows 32-bit' expire_in: 30 days #-----------------------------------------------------------------------# @@ -233,11 +232,10 @@ build_windows_64: - _fold_final_ - _fold_start_ 'compressing the release folder so that we can upload it as artifact' - - mv release 'OpenRGB Windows 64-bit' - ${datetime} = Get-Date ([datetime]::UtcNow) -Format "yyyy-MM-ddTHH-mm-ss" - ${revision} = ((git rev-parse --short HEAD) | Out-String).Trim() - ${rversion} = (((Get-Content '..\OpenRGB.pro' | Select-String -Pattern "VERSION =") | Out-String).Trim().Split("="))[1].Trim() - - 7z a -mx9 -r -y "OpenRGB_${rversion}_64_${revision}_nightly_${datetime}.7z" 'OpenRGB Windows 64-bit' + - mv release ../'OpenRGB Windows 64-bit' - _fold_final_ # cache: # key: same-key @@ -245,7 +243,7 @@ build_windows_64: # - C:\vcpkg\installed\ artifacts: paths: - - _build/*.7z + - 'OpenRGB Windows 64-bit' expire_in: 30 days #-----------------------------------------------------------------------# @@ -291,4 +289,4 @@ build_macos_intel: - if: '$CI_PROJECT_PATH == "CalcProgrammer1/OpenRGB"' when: on_success - if: '$BUILD_MACOS =~ /.+/' - when: on_success \ No newline at end of file + when: on_success