From 3d4f909072aeb100891ab710355ab4540e4a4c51 Mon Sep 17 00:00:00 2001 From: steppke_a Date: Tue, 14 Feb 2023 14:55:41 +0000 Subject: [PATCH] First test of a CI pipeline using.gitlab-ci.yml file --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bf62f0e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +build-job: + stage: build + script: + - echo "Hello, $GITLAB_USER_LOGIN!" + +test-job1: + stage: test + script: + - echo "This job tests something" + \ No newline at end of file