drone CI
continuous-integration/drone/tag Build is passing Details

main 0.1.0
cosmonaut 2022-04-13 15:20:54 -07:00
parent b43d172795
commit e45aed1daa
1 changed files with 34 additions and 0 deletions

34
.drone.yml Normal file
View File

@ -0,0 +1,34 @@
kind: pipeline
type: docker
name: default
steps:
- name: build-linux
image: thatcosmonaut/moonworks-build
commands:
- git submodule update --recursive --init
- cmake -E make_directory ./build
- cd ./build
- cmake -DCMAKE_C_COMPILER=/usr/bin/clang -S .. -B .
- make
- name: build-windows
image: thatcosmonaut/moonworks-build
commands:
- git submodule update --recursive --init
- cmake -E make_directory ./windows-build
- cd ./windows-build
- mingw64-cmake -S .. -B .
- make
- name: gitea_release
image: plugins/gitea-release
settings:
base_url: https://gitea.moonside.games
api_key:
from_secret: gitea_token
files:
- ./build/libWellspring.so
- ./windows-build/Wellspring.dll
when:
event: tag