This repository was archived by the owner on Dec 14, 2025. It is now read-only.
[ACTION] Upload qemu log on pytest failure #203
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: pytest | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/darthcloud/idf-blueretro:v5.5.0_2024-12-02_ws | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Build with ESP-IDF | |
| shell: bash | |
| run: | | |
| . $IDF_PATH/export.sh | |
| echo "br_version=$(git describe --always --tags --dirty)" >> $GITHUB_ENV | |
| echo "$(git describe --always --tags --dirty) dbg qemu" | cut -c -31 > version.txt | |
| cat version.txt | |
| cp configs/dbg/qemu sdkconfig | |
| idf.py build | |
| - name: Run pytest | |
| shell: bash | |
| run: | | |
| . $IDF_PATH/export.sh | |
| (cd build; esptool.py --chip esp32 merge_bin --fill-flash-size 4MB -o flash_image.bin @flash_args) | |
| qemu-system-xtensa -machine esp32 -drive file=build/flash_image.bin,if=mtd,format=raw -serial file:serial_log.txt -display none -nic user,model=open_eth,id=lo0,hostfwd=tcp:127.0.0.1:8001-:80 -daemonize | |
| pytest | |
| - name: Upload artifact | |
| if: '!cancelled()' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: serial_log | |
| path: serial_log.txt | |
| if-no-files-found: error |