diff --git a/.drone.yml b/.drone.yml index 1ba2d39..5470f6d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -21,3 +21,28 @@ steps: - cd build; cmake .. - make -j 4 - make test + +--- +kind: pipeline +type: kubernetes +name: build-arm64 +platform: + arch: arm64 +node_selector: + kubernetes.io/arch: arm64 + +steps: + - name: submodules + image: alpine/git + commands: + - git submodule update --init --recursive + + - name: build-arm64 + image: debian:bookworm-slim + commands: + - apt-get update + - apt-get -qy install gcc-12 libsodium-dev cmake make build-essential pkg-config + - mkdir build + - cd build; cmake .. + - make -j 4 + - make test \ No newline at end of file