Files
testing/.drone.yml
Linus109 30047b383d
Some checks failed
continuous-integration/drone Build encountered an error
arm
2025-11-23 14:01:14 +01:00

17 lines
244 B
YAML

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