diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8fd39031f1e368f6e166d5d07556b674f73315f3..dee34811c3afd19f7fff969e7ba6a714efabb032 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,22 +1,37 @@ +image: ubuntu:lastest + stages: + - deploy - build - test +deploy: + stage: deploy + script: + + - echo 'coping from Runner to SUT' + - ls /home/ubuntu/ -l -a + only: + - master + tags: + - DA build: stage: build - tags : DAserver script: - echo "Building" - pwd - - ls -l -a - + only: + - master - + tags: + - DA test: stage: test script: - echo "testing" - tags : DAserver - + only: + - master + tags: + - DA