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

Fix CI push and change pyangbind to run against its master branch as a compatibility report check #912

Merged
merged 14 commits into from
Jul 17, 2023
4 changes: 2 additions & 2 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ steps:
git clone git@github.com:openconfig/models-ci.git /go/src/github.com/openconfig/models-ci
cd /go/src/github.com/openconfig/models-ci
# Modify the major version to update models-ci version.
branch=$(git tag -l 'v9*' | sort -V | tail -1)
branch=$(git tag -l 'v10.*' | sort -V | tail -1)
git checkout $branch
volumes:
- name: 'ssh'
Expand Down Expand Up @@ -89,8 +89,8 @@ steps:
-pr-number=$_PR_NUMBER
-skipped-validators=confd,yanglint
-extra-pyang-versions=2.2.1
#-compat-report=yanglint
-branch=$BRANCH_NAME
-compat-report=pyangbind
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we now making pyangbind non-blocking?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is an error in the BFD model: https://gist.github.com/OpenConfigBot/f2158a52bc907ed4e690582d47f2af61#gistcomment-4628801

I want to make it unblocking until we resolve it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opened an issue in pyangbind: robshakir/pyangbind#302

secretEnv: ['GITHUB_ACCESS_TOKEN']
env:
- 'GOPATH=/go'
Expand Down
Loading