Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check that samples are both in ./examples and ./integration/examples #1832

Merged
merged 1 commit into from
Mar 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions hack/check-samples.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env bash

# Copyright 2019 The Skaffold Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -e -o pipefail

EXAMPLES=$(find examples -type d -mindepth 1 -maxdepth 1 -not -empty -exec basename {} \; | sort)
INTEGRATION_EXAMPLES=$(find integration/examples -type d -mindepth 1 -maxdepth 1 -not -empty -exec basename {} \; | sort)

if [[ "${EXAMPLES}" != "${INTEGRATION_EXAMPLES}" ]]; then
echo "Every code sample that is in ./examples should also be in ./integration/examples"
exit 1
fi

1 change: 1 addition & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ scripts=(
"hack/gofmt.sh"
"hack/linter.sh"
"hack/dep.sh"
"hack/check-samples.sh"
"hack/check-docs.sh"
)
fail=0
Expand Down