vieter/.woodpecker/.build.yml

32 lines
697 B
YAML
Raw Normal View History

2022-01-13 15:29:43 +01:00
# These checks already get performed on the feature branches
branches:
exclude: [ main, dev ]
2022-01-13 13:40:33 +01:00
pipeline:
vieter:
image: 'chewingbever/vlang:latest'
2022-01-14 18:35:22 +01:00
pull: true
2022-01-13 13:40:33 +01:00
group: 'build'
2022-01-14 18:32:00 +01:00
environment:
- LDFLAGS='-lz -lbz2 -llzma -lexpat -lzstd -llz4 -static'
2022-01-13 13:40:33 +01:00
commands:
- make vieter
debug:
image: 'chewingbever/vlang:latest'
2022-01-14 18:35:22 +01:00
pull: true
2022-01-14 18:32:00 +01:00
environment:
- LDFLAGS='-lz -lbz2 -llzma -lexpat -lzstd -llz4 -static'
2022-01-13 13:40:33 +01:00
group: 'build'
commands:
- make debug
prod:
image: 'chewingbever/vlang:latest'
2022-01-14 18:35:22 +01:00
pull: true
2022-01-14 18:32:00 +01:00
environment:
- LDFLAGS='-lz -lbz2 -llzma -lexpat -lzstd -llz4 -static'
2022-01-13 13:40:33 +01:00
group: 'build'
commands:
- make prod