From 8bbb466266cec125c95fd3498b9eb460a057de2b Mon Sep 17 00:00:00 2001 From: BabyGrandpa <rafanulet@msn.com> Date: Fri, 14 Mar 2025 02:14:23 +0100 Subject: [PATCH] Testing Pipeline, without a project present --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b42837c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,25 @@ +stages: + - build + - test + - deploy + +build_job: + stage: build + script: + - echo "Building the project..." + - sleep 2 + - echo "Build completed!" + +test_job: + stage: test + script: + - echo "Running tests..." + - sleep 2 + - echo "Tests passed!" + +deploy_job: + stage: deploy + script: + - echo "Deploying application..." + - sleep 2 + - echo "Deployment successful!" \ No newline at end of file -- GitLab