From 0311fcf3f09c33421329dc584cecee0e33212842 Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 11 Oct 2023 17:49:15 -0400 Subject: [PATCH] Remove unused run configuration and update CI pipeline This commit removes 'Install.xml' run configuration, which is no longer used or necessary in the project. The '.gitlab-ci.yml' file has also been updated to include a new 'prepare' stage in the pipeline. This modification was done to streamline and improve the CI/CD process by explicitly installing necessary project dependencies before the build phase begins. --- .gitlab-ci.yml | 6 ++++++ .idea/runConfigurations/Install.xml | 10 ---------- 2 files changed, 6 insertions(+), 10 deletions(-) delete mode 100644 .idea/runConfigurations/Install.xml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1fc214..17b740d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,18 @@ image: repo.n64.cc:443/nosial/ncc:latest stages: + - prepare - build - publish variables: PACKAGE_NAME: $CI_COMMIT_REF_NAME +prepare: + stage: prepare + script: + - ncc project install + build: stage: build script: diff --git a/.idea/runConfigurations/Install.xml b/.idea/runConfigurations/Install.xml deleted file mode 100644 index 1fb616b..0000000 --- a/.idea/runConfigurations/Install.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - \ No newline at end of file