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: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 18:58:31 +01:00
|
|
|
- make test
|
2021-01-27 18:26:03 +01:00
|
|
|
- BUILDDIR=/opt/cloud/cuser/os make release
|
|
|
|
- DOCDIR=/opt/cloud/cuser/os/doc make doc
|
2021-01-27 17:58:31 +01:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|