From 203d76a550ff2c957200662902d08b400462ac27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=A4rtens?= Date: Mon, 25 Nov 2019 01:10:06 +0100 Subject: [PATCH] remove option to build debug builds, because they are not needed and to reduce caches --- .gitlab-ci.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 81826abd87..e0020e089f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,44 +21,6 @@ before_script: # -- optional build -.optional-debug: &optional-debug - stage: optional-builds - tags: - - veloren-docker - except: - - schedules - when: manual - -optional-debug:linux: - <<: *optional-debug - script: - - VELOREN_ASSETS=assets cargo build --verbose - - cp target/debug/veloren-server-cli $CI_PROJECT_DIR - - cp target/debug/veloren-voxygen $CI_PROJECT_DIR - - strip --strip-all veloren-server-cli - - strip --strip-all veloren-voxygen - artifacts: - paths: - - veloren-server-cli - - veloren-voxygen - - assets/ - - LICENSE - expire_in: 1 week - -optional-debug:windows: - <<: *optional-debug - script: - - VELOREN_ASSETS=assets cargo build --verbose --target=x86_64-pc-windows-gnu - - cp target/x86_64-pc-windows-gnu/debug/veloren-server-cli.exe $CI_PROJECT_DIR - - cp target/x86_64-pc-windows-gnu/debug/veloren-voxygen.exe $CI_PROJECT_DIR - artifacts: - paths: - - veloren-server-cli.exe - - veloren-voxygen.exe - - assets/ - - LICENSE - expire_in: 1 week - .optional-release: &optional-release stage: optional-builds tags: