Skip to content
Snippets Groups Projects
.gitlab-ci.yml 326 B
Newer Older
N5608's avatar
N5608 committed
#This declares the pipeline stages 
stages:
  - build
  - test
  
  
build:
  stage: build
  script:
  - echo "Initiliaze build task..."
  - ./gradlew clean build
  - echo "Finalized build task..."
  artifacts:
    untracked: true
  tags:
    - build  
N5608's avatar
N5608 committed

N5608's avatar
N5608 committed
test: 
    script:    
        - echo "OK"
    tags: 
        - general