aswi2021jmsd-gitlab4/.gitlab-ci.yml @ 7065d97a
1 | fd2486c6 | Jan Pašek | stages: |
---|---|---|---|
2 | - build |
||
3 | - test |
||
4 | - deploy |
||
5 | |||
6 | build_job: |
||
7 | stage: build |
||
8 | script: |
||
9 | - mkdir build |
||
10 | - echo "OK" > build/build.txt |
||
11 | |||
12 | test_job: |
||
13 | stage: test |
||
14 | script: |
||
15 | - mkdir test |
||
16 | - echo "OK" > test/test.txt |
||
17 | |||
18 | deploy_job: |
||
19 | stage: deploy |
||
20 | script: |
||
21 | - mkdir deploy |
||
22 | - echo "OK" > deploy/deploy.txt |