Skip to content

Commit

Permalink
ci: Add a workflow to check Wi-Fi FW patch version
Browse files Browse the repository at this point in the history
This workflow checks the version between the C header and the firmware
patch bins and leaves a comment.

Signed-off-by: Chaitanya Tata <[email protected]>
  • Loading branch information
krish2718 committed Nov 7, 2023
1 parent abf0e67 commit 988aec2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/check_wifi_fw_patch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Verify nRF70 Wi-Fi firmware patch version
on: pull_request
env:
PATCH_INFO_FILE: 'nrf_wifi/fw_if/umac_if/inc/fw/patch_info.h'
PATCH_BIN_BASE: 'nrf_wifi/fw_bins'
COMMENT: 'nRF70 Wi-Fi firmware patch version:'
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Extract patch version
run: |
echo EXP_PATCH_VERSION=${{ env.PATCH_INFO_FILE }} | grep "#define RPU_" | awk '{print $3}' | tr -d '()' | paste -sd "." >> "$GITHUB_OUTPUT"
id: patch_version
- name: Verify patch version
run: |
for patch in $(find ${{ env.PATCH_BIN_BASE }} -name 'nrf70.bin'); do
echo "Verifying $patch"
patch_version=$(hexdump -s 4 -n 4 -e '16/1 "%x " "\n"' $patch | tr -d ' ' | rev | sed 's/.\{1\}/&./g' | sed 's/.$//')
echo "Patch version: $patch_version, expected: ${{ steps.patch_version.outputs.EXP_PATCH_VERSION }}"
if [ "${{ steps.patch_version.outputs.EXP_PATCH_VERSION }}" != "$patch_version" ]; then
echo "Patch version mismatch for $patch: $patch_version != ${{ steps.patch_version.outputs.EXP_PATCH_VERSION }}" >> "$COMMENT"
exit 1
fi
done
- name: Comment on PR
if: ${{ always() }}
uses: actions/github-script@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: ${{ env.COMMENT }} $(cat "$GITHUB_OUTPUT")
})

0 comments on commit 988aec2

Please sign in to comment.