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