fab-city-software-kit/.gitlab-ci.yml
2022-11-29 14:33:24 +01:00

30 lines
455 B
YAML

---
variables:
NIX_CONFIG: "experimental-features = nix-command flakes recursive-nix"
default:
tags:
- nix
stages:
- test
- build
lint.yaml:
stage: test
script:
- nix develop
- yamllint -f auto .
lint.kustomize.dev:
stage: build
script:
- nix develop
- kubectl kustomize overlays/dev --enable-helm
lint.kustomize.prod:
stage: build
script:
- nix develop
- kubectl kustomize overlays/prod --enable-helm