darkflameserver/.drone.yml
Aaron Riedel d0aa8f5d6d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
update to gcc 13 to fix build issues
2024-06-28 14:00:34 +02:00

26 lines
No EOL
520 B
YAML

kind: pipeline
type: kubernetes
name: darkflame-build
steps:
- name: build
image: gcc:13
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