Projekt

Obecné

Profil

Stáhnout (369 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
    only:
15
        - 8219_CICD_Test
16
    script: 
17
    - pip3 install -r requirements.txt
18
    - pytest
19

    
20
deploy_job:
21
    stage: deploy
22
    script: 
23
    - mkdir deploy
24
    - echo "OK" > deploy/deploy.txt
(2-2/6)