feat(ci): migrate to volker.raschek/git v1.2.1
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus Pesch 2023-06-08 21:44:21 +02:00
parent 26b68f9225
commit 8500f98df4
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
1 changed files with 18 additions and 0 deletions

View File

@ -3,10 +3,16 @@ kind: pipeline
type: kubernetes type: kubernetes
name: linter name: linter
clone:
disable: true
platform: platform:
os: linux os: linux
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: markdown lint - name: markdown lint
commands: commands:
- markdownlint *.md - markdownlint *.md
@ -51,6 +57,9 @@ kind: pipeline
type: kubernetes type: kubernetes
name: unit-test-amd64 name: unit-test-amd64
clone:
disable: true
depends_on: depends_on:
- linter - linter
@ -58,6 +67,9 @@ platform:
arch: amd64 arch: amd64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: unit-test - name: unit-test
commands: commands:
- go test -v ./... - go test -v ./...
@ -81,6 +93,9 @@ kind: pipeline
type: kubernetes type: kubernetes
name: unit-test-arm64 name: unit-test-arm64
clone:
disable: true
depends_on: depends_on:
- linter - linter
@ -88,6 +103,9 @@ platform:
arch: arm64 arch: arm64
steps: steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: unit-test - name: unit-test
commands: commands:
- go test -v ./... - go test -v ./...