Projekt

Obecné

Profil

Stáhnout (331 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
(2-2/6)