2023-08-20 08:40:48 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2023-08-20 08:45:55 +00:00
|
|
|
type: docker
|
2023-08-20 08:40:48 +00:00
|
|
|
name: Compile
|
|
|
|
|
|
|
|
platform:
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Prepare Repo
|
2023-08-20 08:45:55 +00:00
|
|
|
image: alpine/git
|
2023-08-20 08:40:48 +00:00
|
|
|
commands:
|
2023-08-20 08:46:04 +00:00
|
|
|
- git submodule update --init --recursive
|
2023-08-20 08:40:48 +00:00
|
|
|
|
|
|
|
- name: Compile gmqcc
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- chmod +x ci-dependencies.sh
|
|
|
|
- ./ci-dependencies.sh
|
|
|
|
- cd gmqcc
|
|
|
|
- make
|
|
|
|
|
|
|
|
- name: Compile specialsauce
|
|
|
|
image: alpine
|
2023-08-20 08:41:04 +00:00
|
|
|
- chmod +x ci-dependencies.sh build.sh
|
2023-08-20 08:40:48 +00:00
|
|
|
- ./ci-dependencies.sh
|
|
|
|
- ./build.sh
|
|
|
|
|
|
|
|
# RELEASE TBD
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|