kind: pipeline
name: default
platform:
os: linux
arch: arm64
steps:
- name: test
image: gcc
commands:
- ./configure
- make
- make test
1111