From 8500f98df47a7cace32d20be8d75d8f646b05ac3 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Thu, 8 Jun 2023 21:44:21 +0200 Subject: [PATCH] feat(ci): migrate to volker.raschek/git v1.2.1 --- .drone.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.drone.yml b/.drone.yml index 25bb7f4..685bf22 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,10 +3,16 @@ kind: pipeline type: kubernetes name: linter +clone: + disable: true + platform: os: linux steps: +- name: clone + image: git.cryptic.systems/volker.raschek/git:1.2.1 + - name: markdown lint commands: - markdownlint *.md @@ -51,6 +57,9 @@ kind: pipeline type: kubernetes name: unit-test-amd64 +clone: + disable: true + depends_on: - linter @@ -58,6 +67,9 @@ platform: arch: amd64 steps: +- name: clone + image: git.cryptic.systems/volker.raschek/git:1.2.1 + - name: unit-test commands: - go test -v ./... @@ -81,6 +93,9 @@ kind: pipeline type: kubernetes name: unit-test-arm64 +clone: + disable: true + depends_on: - linter @@ -88,6 +103,9 @@ platform: arch: arm64 steps: +- name: clone + image: git.cryptic.systems/volker.raschek/git:1.2.1 + - name: unit-test commands: - go test -v ./...