Projekt

Obecné

Profil

Stáhnout (366 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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 509fc2c2 Stanislav Král
    only:
15 2640ea75 Stanislav Král
        - 8219_CICD_Test
16 fd2486c6 Jan Pašek
    script: 
17 00e1e26e Stanislav Král
    - pip3 install -r requirements.txt && pytest
18 fd2486c6 Jan Pašek
19
deploy_job:
20
    stage: deploy
21
    script: 
22
    - mkdir deploy
23
    - echo "OK" > deploy/deploy.txt