From e52b1b96622b116c0ed4d8e658d1fb432dd34eae Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Mon, 2 Apr 2018 13:11:03 +0800 Subject: [PATCH] Test jdk too --- .drone.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6c9b93f..89e280e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,22 +11,31 @@ pipeline: 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