Skip to content
Snippets Groups Projects
.gitlab-ci.yml 849 B
Newer Older
  • Learn to ignore specific revisions
  • David Trattnig's avatar
    David Trattnig committed
    image: alpine:latest
    
    stages:
      - bundle
      - deploy
    
    variables:
    
    David Trattnig's avatar
    David Trattnig committed
      API_ROOT_FILE: ./api/engine.yaml
    
    David Trattnig's avatar
    David Trattnig committed
      BUNDLED_JSON_FILE: ./public/api.json
    
    cache:
      paths:
        - ./node_modules
    
    bundle_and_test:
      stage: bundle
      before_script:
        - apk add --update npm
        - npm install -g @apidevtools/swagger-cli
    
      script:
        - mkdir public
        - swagger-cli bundle -t json $API_ROOT_FILE > $BUNDLED_JSON_FILE
        - swagger-cli validate $BUNDLED_JSON_FILE
    
      artifacts:
        paths:
          - public
        expire_in: 2 days
      only:
    
    David Trattnig's avatar
    David Trattnig committed
        - master
    
    David Trattnig's avatar
    David Trattnig committed
    
    pages:
      stage: deploy
      before_script:
        - apk add --update npm
        - npm install swagger-ui-dist@3.22.1
      script:
        - cp -rp node_modules/swagger-ui-dist/* ./public
        - 'sed -i "s@.*url.*@url: \"api.json\",@" ./public/index.html'
      artifacts:
        paths:
          - public
        expire_in: 2 days
      only:
    
    David Trattnig's avatar
    David Trattnig committed
        - master