darkflameserver/.drone.yml
Aaron Riedel 2e53893287
All checks were successful
continuous-integration/drone/push Build is passing
add cmake
2023-11-07 23:43:07 +02:00

26 lines
No EOL
520 B
YAML

kind: pipeline
type: docker
name: storagebox-exporter
steps:
- name: build
image: gcc:12
commands:
- apt update && apt install -y cmake
- git clone --recursive https://github.com/DarkflameUniverse/DarkflameServer
- cd DarkflameServer
- ./build.sh -j4
- name: docker-build
image: plugins/docker
settings:
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
repo: aaronriedel/darkflameserver
tags: latest
when:
branch:
- main
event:
- push