forked from kubeflow/kubeflow
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #504 from jiridanek/jd_unittest_generate
RHOAIENG-16751: chore(gha): add test for checking the values match between Version file and metadata yaml file
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
set -Eeuxo pipefail | ||
|
||
# Run all code generators we use in this repository. | ||
# It is used to check for mismatches in GitHub Actions workflow. | ||
|
||
# go projects | ||
(cd components/notebook-controller; make manifests generate fmt) | ||
(cd components/odh-notebook-controller; make manifests generate fmt) | ||
|
||
# component metadata yaml file | ||
(cd components/notebook-controller; bash generate-metadata-yaml.sh -o config/component_metadata.yaml) |