Merge pull request #2 from arkedge/fix/uart_tx_error #4
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: Match HAL headers | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| pull-requests: write | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: arkedge/[email protected] | |
| with: | |
| endpoint: ${{ secrets.GH_FEDERATION_ENDPOINT }} | |
| - uses: actions/[email protected] | |
| with: | |
| submodules: recursive | |
| - name: Diff headers | |
| run: | | |
| set -Cue -o pipefail | |
| while IFS= read -r -d '' HAL_BIND_DIR | |
| do | |
| HAL_NAME="${HAL_BIND_DIR#hal-bind/}" | |
| HAL_NAME="${HAL_NAME%-bind}" | |
| HEADER_SRC="hal-bind/${HAL_NAME}-bind/include/${HAL_NAME}.h" | |
| HEADER_DST="c2a-example/src/src_user/hal/${HAL_NAME}.h" | |
| if test -e "$HEADER_SRC"; then | |
| diff "$HEADER_SRC" "$HEADER_DST" | |
| else | |
| test ! -e "$HEADER_DST" | |
| fi | |
| done < <(find hal-bind -type d -name '*-bind' -mindepth 1 -maxdepth 1 -print0) | |