fling/.drone.yml
Armin Friedl adf8f4e08d
All checks were successful
continuous-integration/drone/push Build is passing
Don't treat warnings as errors
2020-06-07 13:00:07 +02:00

18 lines
316 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build-service
image: adoptopenjdk:11-hotspot
commands:
- ls -al
- cd service/fling
- ./mvnw -Plocal clean package
- name: build-web
image: node:latest
commands:
- ls -al
- cd web/fling
- npm install && CI=false npm run build