Skip to content
Snippets Groups Projects
.gitlab-ci.yml 198 B
Newer Older
Lorenz Wenner's avatar
Lorenz Wenner committed
stages:
    - build
    - test

build
    - stage: build
    - echo building
    - mkdir build
    - touch build/test.txt
    
test
    - stage: test
    - echo testing
    - test -f build/test.txt