-
Notifications
You must be signed in to change notification settings - Fork 6
Make changes to support HitL testing. #69
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
Changes from 10 commits
8f218a5
e6d2ade
127f161
a7002e5
2f2d353
1077e03
73b5998
896f97a
8ba3ee6
24cef64
3a62bda
fa6c36b
219b3a6
d2890b4
7587d81
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,142 @@ | ||
| # | ||
|
|
||
| name: HIL-circuitpython | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ main ] | ||
| paths: | ||
| # This is quite a big job so run only when files affecting it change. | ||
| - .github/workflows/hil-circuitpython.yml | ||
| - examples/notecard-basics/cpy_example.py | ||
| - test/hitl/** | ||
| - test/scripts/usbmount | ||
| - test/scripts/check_cpy*.* | ||
| - notecard/** | ||
|
|
||
| workflow_dispatch: | ||
| inputs: | ||
| flash_device: | ||
| required: false | ||
| type: boolean | ||
| default: true | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: [self-hosted, linux, circuitpython, swan-3.0, notecard-serial] | ||
| defaults: | ||
| run: | ||
| shell: bash | ||
| strategy: | ||
| matrix: | ||
| CIRCUITPYTHON_VERSION: [8.2.2] | ||
| flash_device: # has to be an array - use the input from workflow_dispatch if present, otherwlse true | ||
| - ${{ github.event.inputs.flash_device=='' && true || github.event.inputs.flash_device }} | ||
| lock_cpy_filesystem: [true] | ||
| env: | ||
| USB_MSD_ATTACH_TIME: 15 | ||
| CIRCUITPYTHON_UF2: "adafruit-circuitpython-swan_r5-en_US-${{ matrix.CIRCUITPYTHON_VERSION }}.uf2" | ||
| CIRCUITPYTHON_VERSION: ${{ matrix.CIRCUITPYTHON_VERSION}} | ||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Set Env Vars | ||
| run: | | ||
| # environment variables set in a step cannot be used until subsequent steps | ||
| echo "CIRCUITPYTHON_UF2_URL=https://downloads.circuitpython.org/bin/swan_r5/en_US/${CIRCUITPYTHON_UF2}" >> $GITHUB_ENV | ||
|
|
||
| - name: Check Runner Config | ||
| run: test/scripts/check_cpy_runner_config.sh | ||
|
|
||
| - name: Download Latest Bootloader | ||
| env: | ||
| REPO: adafruit/tinyuf2 | ||
| ASSET: tinyuf2-swan_r5 | ||
| if: ${{ matrix.flash_device }} | ||
| run: | | ||
| echo "retrieving the latest release from ${REPO}" | ||
| wget -q -O latest.json "https://api.github.com/repos/${REPO}/releases/latest" | ||
|
|
||
| echo "extracting asset details for ${ASSET}" | ||
| asset_file="${ASSET}_asset.json" | ||
| jq -r --arg ASSET "$ASSET" '.assets[] | select(.name | startswith($ASSET))' latest.json > $asset_file | ||
|
|
||
| # extract the name and download url without double quotes | ||
| download_name=$(jq -r '.name' $asset_file) | ||
| download_url=$(jq -r '.browser_download_url' $asset_file) | ||
| echo "Downloading release from $download_url" | ||
| wget -q -N $download_url | ||
| unzip -o $download_name | ||
| binfile=$(basename $download_name .zip).bin | ||
| echo "TINYUF2_BIN=$binfile" >> $GITHUB_ENV | ||
|
|
||
| - name: Download CircuitPython v${{ env.CIRCUITPYTHON_VERSION }} | ||
| if: ${{ matrix.flash_device }} | ||
| run: | | ||
| echo "Downloading CircuitPython for Swan from $CIRCUITPYTHON_UF2_URL" | ||
| wget -q -N "$CIRCUITPYTHON_UF2_URL" | ||
|
|
||
| - name: Erase device and program bootloader | ||
| if: ${{ matrix.flash_device }} | ||
| run: | | ||
| # cannot use st-flash - every 2nd programing incorrectly puts the device in DFU mode | ||
| # st-flash --reset write $binfile 0x8000000 | ||
| # Have to use the version of openocd bundled with the STM32 platform in PlatformIO, which (presumably) has the stm32 extensions compiled in | ||
| ~/.platformio/packages/tool-openocd/bin/openocd \ | ||
| -d2 -s ~/.platformio/packages/tool-openocd/openocd/scripts \ | ||
| -f interface/stlink.cfg -c "transport select hla_swd" -f target/stm32l4x.cfg \ | ||
| -c "init; halt; stm32l4x mass_erase 0" \ | ||
| -c "program $TINYUF2_BIN 0x8000000 verify reset; shutdown" | ||
|
|
||
| - name: Program CircuitPython | ||
| if: ${{ matrix.flash_device }} | ||
| run: | | ||
| # wait for the bootloader drive to appear | ||
| timeout $USB_MSD_ATTACH_TIME bash test/scripts/wait_for_file.sh "$CPY_FS_UF2" | ||
|
|
||
| # The bootloader reboots quickly once the whole file has been received, | ||
| # causing an input/output error to be reported. | ||
| # Ignore that, and fail if the CIRCUITPY filesystem doesn't appear | ||
| echo "Uploading CircuitPython binary..." | ||
| cp "$CIRCUITPYTHON_UF2" "$CPY_FS_UF2" || true | ||
| echo Ignore the input/output error above. Waiting for device to boot. | ||
| timeout $USB_MSD_ATTACH_TIME bash test/scripts/wait_for_file.sh "$CPY_FS_CIRCUITPY" | ||
| echo "CircuitPython binary uploaded and running." | ||
|
|
||
| - name: Make CircuitPython filesystem writeable to pyboard | ||
| if: ${{ matrix.lock_cpy_filesystem }} | ||
| run: | | ||
| timeout $USB_MSD_ATTACH_TIME bash test/scripts/wait_for_file.sh "$CPY_FS_CIRCUITPY" | ||
|
|
||
| # only copy if it's changed or not present. After the device has reset, no further changes can be made | ||
| # until the filesystem is erased. This allows the workflow to be rerun flash_device=false | ||
| diff test/hitl/boot.py "$CPY_FS_CIRCUITPY/boot.py" || test/hitl/boot.py "$CPY_FS_CIRCUITPY" | ||
|
||
|
|
||
| # reset the device (todo move this blob to a utility script) | ||
| ~/.platformio/packages/tool-openocd/bin/openocd \ | ||
| -d2 -s ~/.platformio/packages/tool-openocd/openocd/scripts \ | ||
| -f interface/stlink.cfg -c "transport select hla_swd" -f target/stm32l4x.cfg \ | ||
| -c "init; halt; reset; shutdown" | ||
|
|
||
| # wait for the device to come back | ||
| timeout $USB_MSD_ATTACH_TIME bash test/scripts/wait_for_file.sh "$CPY_FS_CIRCUITPY" | ||
|
|
||
| - name: Setup Python | ||
| run: | | ||
| python3 -m venv .venv-runner | ||
| . .venv-runner/bin/activate | ||
| pip install -r test/hitl/requirements.txt | ||
|
|
||
| - name: Setup 'note-python' on device | ||
| if: ${{ ! matrix.lock_cpy_filesystem }} | ||
| run: | | ||
| mkdir -p ${CPY_FS_CIRCUITPY}/lib/notecard | ||
| cp notecard/*.py ${CPY_FS_CIRCUITPY}/lib/notecard/ | ||
| cp examples/notecard-basics/cpy_example.py ${CPY_FS_CIRCUITPY}/example.py | ||
|
|
||
| - name: Run CircuitPython Tests | ||
| run: | | ||
| . .venv-runner/bin/activate | ||
| ${{ ! matrix.lock_cpy_filesystem }} && skipsetup=--skipsetup | ||
| pytest $skipsetup "--productuid=$CPY_PRODUCT_UID" "--port=$CPY_SERIAL" --platform=circuitpython test/hitl | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| name: HIL-micropython | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ main ] | ||
| paths: | ||
| - .github/workflows/hil-micropython.yml | ||
| - test/hitl/** | ||
| - notecard/** | ||
| - examples/notecard-basics/mpy_example.py | ||
| - test/scripts/check_mpy*.* | ||
|
|
||
| workflow_dispatch: | ||
| inputs: | ||
| flash_device: | ||
| required: false | ||
| type: boolean | ||
| default: true | ||
|
|
||
| jobs: | ||
| huzzah32: | ||
|
||
| runs-on: | ||
| - self-hosted, | ||
| - linux, | ||
| - ${{ matrix.MPY_BOARD }}, | ||
| - notecard-serial, | ||
| - micropython | ||
| defaults: | ||
| run: | ||
| shell: bash | ||
| strategy: | ||
| matrix: | ||
| MICROPYTHON_VERSION: [1.20.0] | ||
| MICROPYTHON_DATE: [20230426] | ||
| MICROPYTHON_MCU: [esp32] | ||
| MPY_BOARD: [huzzah32] # the --mpyboard parameter to the tests | ||
| flash_device: # has to be an array - use the input from workflow_dispatch if present, otherwlse true | ||
| - ${{ github.event.inputs.flash_device=='' && true || github.event.inputs.flash_device }} | ||
| env: | ||
| VENV: .venv-runner-mpy | ||
| USB_MSD_ATTACH_TIME: 15 | ||
| MICROPYTHON_BIN: "${{matrix.MICROPYTHON_MCU}}-${{matrix.MICROPYTHON_DATE}}-v${{matrix.MICROPYTHON_VERSION}}.bin" | ||
| MICROPYTHON_VERSION: ${{matrix.MICROPYTHON_VERSION}} | ||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Set Env Vars | ||
| run: | | ||
| # environment variables set in a step cannot be used until subsequent steps | ||
| echo "MICROPYTHON_BIN_URL=https://micropython.org/resources/firmware/${{env.MICROPYTHON_BIN}}" >> $GITHUB_ENV | ||
|
|
||
| - name: Check Runner Config | ||
| run: test/scripts/check_mpy_runner_config.sh | ||
|
|
||
| - name: Download MicroPython v${{ env.MICROPYTHON_VERSION }} | ||
| if: ${{ matrix.flash_device }} | ||
| run: | | ||
| echo "Downloading MicroPython for ESP32 from $MICROPYTHON_BIN_URL" | ||
| wget -q -N "$MICROPYTHON_BIN_URL" | ||
|
|
||
| - name: Setup Python | ||
| run: | | ||
| python3 -m venv ${{ env.VENV }} | ||
| . ${{ env.VENV }}/bin/activate | ||
| # esptool installed directly because it's only a dependency of this workflow | ||
| # while requirements.txt are dependencies of the tests in test/hitl | ||
| pip install -r test/hitl/requirements.txt esptool | ||
|
|
||
| - name: Erase device and Program Micropython | ||
| if: ${{ matrix.flash_device }} | ||
| run: | | ||
| . ${{ env.VENV }}/bin/activate | ||
| # esptool requires the flash to be erased first | ||
| esptool.py --chip esp32 -p ${MPY_SERIAL} erase_flash | ||
| timeout 10 bash test/scripts/wait_for_file.sh "$MPY_SERIAL" | ||
|
|
||
| esptool.py --chip esp32 --port ${MPY_SERIAL} --baud 460800 write_flash -z 0x1000 ${{ env.MICROPYTHON_BIN }} | ||
| timeout 10 bash test/scripts/wait_for_file.sh "$MPY_SERIAL" | ||
|
|
||
| - name: Run MicroPython Tests | ||
| run: | | ||
| . ${{ env.VENV }}/bin/activate | ||
| pytest "--productuid=$MPY_PRODUCT_UID" "--port=$MPY_SERIAL" --platform=micropython --mpyboard=${{ matrix.MPY_BOARD }} test/hitl | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| """ | ||
| This module is used by the mpy_example to set define the appropriate peripherals for | ||
|
||
| different types of boards. The values here are defaults. | ||
| """ | ||
|
|
||
| """ | ||
| The UART instance to use that is connected to Notecard. | ||
| """ | ||
| UART=2 | ||
|
|
||
| """ | ||
| The SCL pin of the I2C bus connected to Notecard | ||
|
||
| """ | ||
| I2C_ID=0 | ||
| SCL=0 | ||
| SDA=0 | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this redundant since we already waited for the file to exist at line 104?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The previous step may not have run since it's conditional. But I want the check in the previous step to keep the check close to the behavior that affects it.