This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
check-da-helm/.drone.yml
Nikolai Rodionov 1c29b32407 fix: helmfile and argocd are working again
- 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
2023-03-16 15:02:23 +01:00

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