antos-frontend/.drone.yml

25 lines
459 B
YAML
Raw Normal View History

2021-01-27 17:58:31 +01:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
arch: arm64
clone:
disable: true
steps:
- name: clone
commands:
2021-01-27 18:04:38 +01:00
- pwd
2021-01-27 17:59:07 +01:00
- git clone git@iohub.dev:lxsang/antos.git
2021-01-27 18:04:38 +01:00
- cd ./antos && git checkout master
2021-01-27 17:58:31 +01:00
- name: build
commands:
2021-01-27 18:06:34 +01:00
- npm install @types/jquery
2021-01-27 18:04:38 +01:00
- cd ./antos && make test
- BUILDDIR=/opt/cloud/cuser/os cd ./antos && make release
- DOCDIR=/opt/cloud/cuser/os/doc cd ./antos && make doc
2021-01-27 17:58:31 +01:00
trigger:
branch:
- master