-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
Restore gate jobs #8388
Restore gate jobs #8388
Conversation
Most gate jobs have been disabled recently so we are risking introduce many defects when migrating to Hugo. This PR fixes the gate job to get it running again.
Deploy preview for kubernetes-io-master-staging ready! Built with commit 6457c21 https://deploy-preview-8388--kubernetes-io-master-staging.netlify.com |
/assign @chenopis |
@@ -42,7 +42,7 @@ type CanonicalTag struct { | |||
// Checks that all glossary files (../_data/glossary/*) contain valid tags | |||
// that are present in the canonical set. | |||
func TestCanonicalTags(t *testing.T) { | |||
canonicalTagsDir := "../_data/canonical-tags" | |||
canonicalTagsDir := "../data/canonical-tags" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm seeing an error message in Travis:
glossary_test.go:73: Unable to read directory ../data/glossary: open ../data/glossary: no such file or directory
This is because we're no longer using YAML files to generate the glossary so that data directory has been removed. Consequently, this file can be deleted.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chenopis The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Most gate jobs have been disabled recently so we are risking introduce
many defects when migrating to Hugo. This PR fixes the gate job to get
it running again.