Files
testing/.drone.yml
Linus109 63b75ce631
All checks were successful
continuous-integration/drone Build is passing
testing
2025-11-23 14:04:36 +01:00

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