21 lines
227 B
YAML
21 lines
227 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: test-pr
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: test
|
|
image: ubuntu
|
|
commands:
|
|
- ./configure
|
|
- make
|
|
- make test
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
- restart
|
|
event:
|
|
- pull_request |