mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-11-08 14:08:22 +01:00
28 lines
506 B
YAML
28 lines
506 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
clone:
|
|
disable: true
|
|
steps:
|
|
- name: clone
|
|
commands:
|
|
- pwd
|
|
- git clone git@iohub.dev:lxsang/antos.git
|
|
- cd ./antos && git checkout master
|
|
- name: build
|
|
commands:
|
|
- cd ./antos
|
|
- npm install typedoc
|
|
#- npm link typescript jest @types/jest ts-jest
|
|
- npm link @types/jquery
|
|
#- make test
|
|
- BUILDDIR=/opt/cloud/cuser/os make release
|
|
- DOCDIR=/opt/cloud/cuser/os/doc make doc
|
|
trigger:
|
|
branch:
|
|
- master
|