Files
testing/.drone.yml
2025-11-23 14:21:48 +01:00

23 lines
297 B
YAML

kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
trigger:
branch:
- main
event:
- push
steps:
- name: compile
image: alpine:latest
commands:
- cd /drone/src
- apk add --no-cache clang
- clang hello.c -o hello
- ./hello