antos-frontend/.drone.yml

27 lines
489 B
YAML
Raw Normal View History

2021-01-27 17:58:31 +01:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
2021-03-25 22:57:26 +01:00
arch: amd64
2021-01-27 17:58:31 +01:00
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:26:03 +01:00
- cd ./antos
2021-01-27 18:44:53 +01:00
- npm link typescript jest @types/jest ts-jest typedoc
2021-01-27 18:35:31 +01:00
- npm link @types/jquery
2021-01-27 19:00:44 +01:00
#- make test
2021-01-31 19:45:08 +01:00
- BUILDDIR=//opt/www/htdocs/os make release
2021-01-27 19:44:51 +01:00
# - DOCDIR=/opt/cloud/cuser/os/doc make doc
2021-01-27 17:58:31 +01:00
trigger:
branch:
- master