.droneci.yml hinzugefügt
This commit is contained in:
parent
7abe5d0193
commit
a818620662
1 changed files with 33 additions and 0 deletions
33
.droneci.yml
Normal file
33
.droneci.yml
Normal 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
|
Loading…
Reference in a new issue