forked from vieter-v/vieter
31 lines
535 B
YAML
31 lines
535 B
YAML
variables:
|
|
- &vlang_image 'git.rustybever.be/chewing_bever/vlang:0.3.2'
|
|
|
|
matrix:
|
|
PLATFORM:
|
|
- 'linux/amd64'
|
|
- 'linux/arm64'
|
|
|
|
branches:
|
|
exclude: [ main ]
|
|
platform: ${PLATFORM}
|
|
|
|
pipeline:
|
|
install-modules:
|
|
image: *vlang_image
|
|
pull: true
|
|
commands:
|
|
- export VMODULES=$PWD/.vmodules
|
|
- 'cd src && v install'
|
|
when:
|
|
event: [pull_request]
|
|
|
|
test:
|
|
image: *vlang_image
|
|
pull: true
|
|
commands:
|
|
- export VMODULES=$PWD/.vmodules
|
|
- make test
|
|
when:
|
|
event: [pull_request]
|