remove verify deps -- use k8s directly

This commit is contained in:
Phillip Wittrock
2019-12-11 15:27:44 -08:00
parent 54b1549586
commit 484ad36529
3 changed files with 0 additions and 21 deletions

View File

@@ -34,7 +34,6 @@ before_install:
install: true
script:
- ./travis/verify-deps.sh
- make verify-kustomize
- ./travis/kyaml-pre-commit.sh

View File

@@ -74,5 +74,3 @@ done
# test all of the modules still work
testAllModules
./travis/verify-deps.sh

View File

@@ -1,18 +0,0 @@
#!/bin/bash
set -o xtrace
for dir in api kustomize pseudo kyaml plugin cmd/config
do
for item in api apimachinery client-go
do
if find $dir -name 'go.*' | xargs grep "k8s.io/${item}" ; then
echo "forbidden deps"
exit 1
fi
if find $dir -name '*.go' | xargs grep "k8s.io/${item}" ; then
echo "forbidden deps"
exit 1
fi
done
done