k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
286 B
11 lines
286 B
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
echo "Install requirements..."
|
|
pip install -r ./tests/scripts/md-table/requirements.txt
|
|
|
|
echo "Generate current file..."
|
|
./tests/scripts/md-table/main.py > tmp.md
|
|
|
|
echo "Compare docs/ci.md with actual tests in tests/files/*.yml ..."
|
|
cmp docs/ci.md tmp.md
|