-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fixing_testregistry_entry
- Loading branch information
Showing
862 changed files
with
82,095 additions
and
17,203 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,16 +1,38 @@ | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners | ||
|
||
# Each line is a file pattern followed by one or more owners. | ||
# Order is important; the last matching pattern takes the most | ||
# precedence. | ||
|
||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# @openconfig/featureprofiles-maintainers will be requested for | ||
# @openconfig/featureprofiles-approvers will be requested for | ||
# review when someone opens a pull request. | ||
* @openconfig/featureprofiles-maintainers @openconfig/featureprofiles-quattro-tl | ||
* @openconfig/featureprofiles-approvers | ||
|
||
# Tests which are ported from ate_tests to otg_tests may be reviewed by this team. | ||
**/otg_tests/** @openconfig/featureprofiles-maintainers-otg @openconfig/featureprofiles-maintainers @openconfig/featureprofiles-quattro-tl | ||
/internal/otgutils/ @openconfig/featureprofiles-maintainers-otg @openconfig/featureprofiles-maintainers @openconfig/featureprofiles-quattro-tl | ||
# /feature folders each have owners who are auto requested for review and may merge PR's | ||
/feature/acl/ @openconfig/featureprofiles-owner-acl | ||
/feature/aft/ @openconfig/featureprofiles-owner-aft | ||
/feature/bgp/ @openconfig/featureprofiles-owner-bgp | ||
/feature/dhcp/ @alokmtri-g | ||
/feature/ethernet/ @ram-mac | ||
/feature/gribi/ @nflath @nachikethas @xw-g | ||
/feature/interface/ @openconfig/featureprofiles-owner-interface | ||
/feature/isis/ @openconfig/featureprofiles-owner-isis | ||
/feature/lldp/ @openconfig/featureprofiles-owner-lldp | ||
/feature/mpls/ @openconfig/featureprofiles-owner-mpls | ||
/feature/mtu/ @openconfig/featureprofiles-owner-mtu | ||
/feature/networkinstance/ @openconfig/featureprofiles-owner-networkinstance | ||
/feature/platform/ @openconfig/featureprofiles-owner-platform | ||
/feature/platform/transceiver @openconfig/featureprofiles-owner-platform-transceiver | ||
/feature/qos @openconfig/featureprofiles-owner-qos | ||
/feature/routing_policy/ @swetha-haridasula | ||
/feature/sampling/ @sudhinj | ||
/feature/security @openconfig/featureprofiles-owner-security | ||
/feature/staticroute/ @openconfig/featureprofiles-owner-staticroute | ||
/feature/stp/ @alokmtri-g | ||
/feature/system @openconfig/featureprofiles-owner-system | ||
/feature/vrrp @amrindrr | ||
|
||
# Order is important; the last matching pattern takes the most | ||
# precedence. | ||
# Common OTG utilities | ||
/internal/otgutils/ @openconfig/featureprofiles-maintainers-otg |
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,42 @@ | ||
name: NOSImage validation script | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
schedule: | ||
- cron: "49 0 * * *" | ||
|
||
jobs: | ||
integration-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | ||
- name: Set up Go | ||
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | ||
with: | ||
go-version: stable | ||
cache: false | ||
- name: Generate Examples and Check No Diff | ||
run: | | ||
cd tools/nosimage | ||
go generate ./example | ||
git diff --exit-code --ignore-all-space --ignore-blank-lines | ||
- name: Validate Good Example | ||
run: | | ||
cd tools/nosimage | ||
go run validate/validate.go -file example/valid_example_nosimageprofile.textproto; rm -rf tmp | ||
- name: Validate Bad Example | ||
run: | | ||
cd tools/nosimage | ||
for file in example/invalid-*.textproto; do | ||
if go run validate/validate.go -file "$file"; then | ||
echo "Validation passed for $file, but failure expected" | ||
exit 1 | ||
fi | ||
done | ||
rm -rf tmp |
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
Oops, something went wrong.