Some checks failed
continuous-integration/drone Build is failing
Signed-off-by: Jochen Maes <jochen@sejo-it.be>
20 lines
410 B
YAML
20 lines
410 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: "Wimi builder"
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build
|
|
image: rust:1.73
|
|
commands:
|
|
- cargo build --target aarch64-unknown-linux-gnu
|
|
- name: publish image
|
|
image: plugins/docker
|
|
settings:
|
|
username: builder
|
|
password:
|
|
from_secret: builder_password
|
|
repo: https://gitea.sejo-it.be/v2/SeJo-IT/wimi
|
|
tags:
|
|
- latest |