vieter/.woodpecker/test.yml

31 lines
514 B
YAML
Raw Normal View History

2022-09-15 13:42:49 +02:00
variables:
- &vlang_image 'chewingbever/vlang:0.3'
matrix:
PLATFORM:
- 'linux/amd64'
- 'linux/arm64'
branches:
exclude: [ main ]
platform: ${PLATFORM}
pipeline:
install-modules:
2022-09-15 13:42:49 +02:00
image: *vlang_image
pull: true
commands:
- export VMODULES=$PWD/.vmodules
- 'cd src && v install'
when:
event: [pull_request]
test:
2022-09-15 13:42:49 +02:00
image: *vlang_image
pull: true
commands:
2022-06-22 09:59:44 +02:00
- export VMODULES=$PWD/.vmodules
- make test
when:
event: [pull_request]