20 lines
386 B
YAML
20 lines
386 B
YAML
|
steps:
|
||
|
- name: Compile gmqcc (amd64)
|
||
|
image: alpine
|
||
|
commands:
|
||
|
- chmod +x ci-dependencies.sh
|
||
|
- ./ci-dependencies.sh
|
||
|
- cd gmqcc
|
||
|
- make
|
||
|
- cd ..
|
||
|
|
||
|
- name: Compile SpecialSauce (amd64)
|
||
|
image: alpine
|
||
|
commands:
|
||
|
- chmod +x ci-dependencies.sh
|
||
|
- chmod +x build.sh
|
||
|
- ./ci-dependencies.sh
|
||
|
- bash build.sh
|
||
|
|
||
|
when:
|
||
|
- event: [pull_request]
|