diff --git a/.drone.yml b/.drone.yml index c04ba3b..d6b3ff1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,8 +7,10 @@ platform: arch: arm64 steps: - - name: test - image: silkeh/clang + - name: compile + image: alpine/edge commands: - - clang hello.c -o hello - - ./hello + - cd /drone/src + - apk add --no-cache clang + - clang hello.c -o hello + - ./hello