1c29b32407
- The tool was totally broken, not it works again - Development has been moved to my Gitea server - A basic test for helmfile is added - A basic drone pipeline is added
27 lines
466 B
YAML
27 lines
466 B
YAML
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: Tests
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: Prepare helm and helmfile
|
|
image: ghcr.io/helmfile/helmfile:canary
|
|
commands:
|
|
- mkdir -p bin
|
|
- cp $(which helm) ./bin/helm
|
|
- cp $(which helmfile) ./bin/helmfile
|
|
|
|
- name: Unit tests
|
|
image: rust:slim
|
|
environment:
|
|
CARGO_BUILD_JOBS: 1
|
|
commands:
|
|
- export PATH=$PWD/bin:$PATH
|
|
- helm
|
|
- helmfile
|
|
- cargo test
|