From fa116950ed55f55fac4fccffeb59412d75666125 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 28 Feb 2023 20:02:43 +0000 Subject: Offloaded archiving the package to pipelines This feels a bit useless now yet it should be possible to use it later on for deploying way easier. --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7f2d10..e503e69 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,19 +47,19 @@ package-linux: stage: package needs: ["build-linux", "test-linux"] script: - - cmake --install build-linux/ --prefix pkg - - cd pkg/ && tar cJf ../kurator-x86_64-linux.tar.xz * + - cmake --install build-linux/ --prefix kurator-x86_64-linux/ artifacts: + name: kurator-x86_64-linux paths: - - kurator-x86_64-linux.tar.xz + - kurator-x86_64-linux/ package-windows: stage: package needs: ["build-windows", "test-windows"] script: - - cmake --install build-windows/ --prefix pkg - - cp /usr/x86_64-w64-mingw32/bin/{libssp-0,libgcc_s_seh-1,libraylib,libstdc++-6,libwinpthread-1}.dll pkg/ - - cd pkg/ && tar cJf ../kurator-x86_64-windows.tar.xz * + - cmake --install build-windows/ --prefix kurator-x86_64-windows/ + - cp /usr/x86_64-w64-mingw32/bin/{libssp-0,libgcc_s_seh-1,libraylib,libstdc++-6,libwinpthread-1}.dll kurator-x86_64-windows/ artifacts: + name: kurator-x86_64-windows paths: - - kurator-x86_64-windows.tar.xz + - kurator-x86_64-windows/ -- cgit v1.1