amogusspecialsauce/.woodpecker/2-build-pr.yml

20 lines
386 B
YAML
Raw Normal View History

2024-10-06 12:15:51 +00:00
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]