odb: fix bmap reader to use bterm instead of net since net can have multiple bterms, but bterm can only have one net #2972
Workflow file for this run
This file contains hidden or 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
| name: Check that OK files are up to date | |
| on: | |
| pull_request: | |
| jobs: | |
| No-Diffs-In-Ok-Files: | |
| runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }} | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check ok files | |
| run: | | |
| set +e | |
| grep --include="*.ok" -Rn "Differences found " | |
| if [[ "$?" == "0" ]]; then | |
| exit 1 | |
| fi |