From bf44270b3def45e80e25f0cc4bd3145dcaaa2363 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 25 Oct 2020 21:19:14 +0100 Subject: [PATCH] Make CI zippier with alpine --- .drone.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6fc3bff..efb0e6a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,18 +3,15 @@ kind: pipeline name: linters steps: - name: run shellcheck - image: debian:buster + image: alpine:latest commands: - - apt update - - apt install -y shellcheck + - apk add shellcheck - shellcheck abra - name: run unit tests - image: debian:buster + image: docker:dind commands: - - apt update - - apt install -y bats curl - - curl -fsSL https://get.docker.com | sh + - apk add bats curl - bats test.bats trigger: branch: