forgeplus/.trustie-pipeline.yml

15 lines
277 B
YAML
Raw Normal View History

2020-07-20 16:29:05 +08:00
kind: pipeline
2020-07-24 15:51:35 +08:00
name: default
2020-07-20 16:29:05 +08:00
2020-07-24 15:51:35 +08:00
platform:
os: linux
arch: arm64
2020-07-20 21:40:40 +08:00
2020-07-24 15:51:35 +08:00
steps:
- name: test
image: gcc
commands:
- ./configure
- make
- make test
1111