.droneci.yml hinzugefügt

This commit is contained in:
Phil 2023-08-20 10:40:48 +02:00
parent 7abe5d0193
commit a818620662

33
.droneci.yml Normal file
View file

@ -0,0 +1,33 @@
---
kind: pipeline
name: Compile
platform:
arch: amd64
steps:
- name: Prepare Repo
image: alpine
commands:
- git pull
- git submodule update --init --recursive
- name: Compile gmqcc
image: alpine
commands:
- chmod +x ci-dependencies.sh
- ./ci-dependencies.sh
- cd gmqcc
- make
- name: Compile specialsauce
image: alpine
- chmod +x ci-dependencies.sh
- ./ci-dependencies.sh
- ./build.sh
# RELEASE TBD
trigger:
event:
- tag