1
0
Fork 0
env/.drone.yml

42 lines
897 B
YAML

pipeline:
docker:
image: plugins/docker
registry: registry.labs.0x.no
repo: registry.labs.0x.no/env
dockerfile: .dockerfile
tags:
- latest
# tests to ensure they compile independently
test-neovim:
image: alpine:latest
commands:
- ./.install/neovim.sh
- nvim -version
- nvim +checkhealth +qa
test-yadm:
image: alpine:latest
commands:
- ./.install/yadm.sh
- yadm
test-golang:
image: alpine:latest
commands:
- ./.install/golang.sh
- export PATH=/usr/local/go/bin:$PATH
- go version
test-node:
image: alpine:latest
commands:
- ./.install/node.sh
- node --version
test-kubectl:
image: alpine:latest
commands:
- ./.install/kubectl.sh
- kubectl version
test-jdk:
image: alpine:latest
commands:
- ./.install/jdk.sh
- java -version