Skip to content
Snippets Groups Projects

Fix mapserver not being built with FCGI support

Merged David Hoese requested to merge bugfix-ubuntu20-fcgi into master
4 files
+ 14
16
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 0
11
#!/usr/bin/env bash
# Usage: lint_helm.sh
echo "Linting helm chart with no additional values"
set -e
helm lint geosphere-mapserver
# need to copy yaml files here so helm docker alias can find them (in PWD)
cp ../ci/*.yaml .
for fn in test-*.yaml; do
echo "Linting helm chart with ${fn}"
helm lint -f ${fn} geosphere-mapserver
done
Loading