ADD: also build on arm64

This commit is contained in:
Dominik Meyer 2023-09-04 12:04:47 +02:00
parent 690e600f0f
commit 6422c368de
Signed by untrusted user: byterazor
GPG Key ID: EABDA0FD5981BC97

View File

@ -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