imx500: Add support for Device ID and encrypted rpks #925
Workflow file for this run
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: picamera2 smoke tests | |
| on: | |
| pull_request: | |
| branches: [ main, next ] | |
| jobs: | |
| run-test: | |
| runs-on: ${{matrix.device}} | |
| strategy: | |
| matrix: | |
| device: [ pi4-1, pi5-2 ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 1 | |
| clean: true | |
| - name: Test | |
| run: DISPLAY=:0 ASSET_DIR=/home/pi/assets PYTHONPATH=/home/pi/_work/picamera2/picamera2:/home/pi/libcamera/build/src/py:/home/pi/kmsxx/build/py:/home/pi/python-v4l2 python3 ${{github.workspace}}/tools/run_tests.py -p ${{github.workspace}} | |
| timeout-minutes: 30 |