17 lines
246 B
YAML
17 lines
246 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: compile
|
|
image: alpine:latest
|
|
commands:
|
|
- cd /drone/src
|
|
- apk add --no-cache clang
|
|
- clang hello.c -o hello
|
|
- ./hello
|