You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ck/.drone.yml

30 lines
348 B

kind: pipeline
name: gcc/amd64/linux
platform:
arch: amd64
steps:
- name: build
image: gcc
pull: true
commands:
- ./tools/ci-build.sh --cores=4
- make check
---
kind: pipeline
name: gcc/arm64/linux
platform:
arch: arm64
steps:
- name: build
image: gcc
pull: true
commands:
- ./tools/ci-build.sh --cores=4
- make check