firmware: bootfiles.bin Update 2711/2712 to the 2025-09-08 release #55
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: Raspberry Pi USB Boot tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
submodule-recursive: true | |
submodule-shallow: true | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
build-essential \ | |
git \ | |
tar \ | |
libusb-1.0-0-dev \ | |
pkg-config | |
- name: Set up Python virtual environment | |
run: | | |
python3 -m venv .venv | |
source .venv/bin/activate | |
python3 -m pip install --upgrade pip | |
pip3 install pycryptodomex | |
- name: Build rpiboot | |
run: | | |
make | |
- name: Run HSM Wrapper unit test | |
run: | | |
source .venv/bin/activate | |
cd test | |
chmod +x validate-hsm-wrapper.sh | |
./validate-hsm-wrapper.sh |