Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/build_and_run_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,13 @@ jobs:
pattern: app_binaries_${{ matrix.idf_ver }}_*
merge-multiple: true
- name: Install Python packages
env:
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
run: |
pip install --prefer-binary cryptography pytest-embedded pytest-embedded-qemu pytest-embedded-serial-esp pytest-embedded-idf pytest-custom_exit_code idf-ci
# Install cryptography from Espressif's PyPI with more available binary wheels in comparison with upstream
# PyPI. Note that with --prefer-binary and PIP_EXTRA_INDEX_URL all package dependencies must be available in
# wheel format at PIP_EXTRA_INDEX_URL.
PIP_EXTRA_INDEX_URL="https://dl.espressif.com/pypi/" pip install --prefer-binary cryptography
# No need to request binary wheels for pure Python packages.
pip install pytest-embedded pytest-embedded-qemu pytest-embedded-serial-esp pytest-embedded-idf pytest-custom_exit_code idf-ci
- name: Setup QEMU
if: matrix.runner.marker == 'qemu'
run: |
Expand Down Expand Up @@ -279,10 +282,13 @@ jobs:
pattern: app_binaries_${{ matrix.idf_ver }}_*
merge-multiple: true
- name: Install Python packages
env:
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
run: |
pip install --prefer-binary cryptography pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf pytest-custom_exit_code idf-ci
# Install cryptography from Espressif's PyPI with more available binary wheels in comparison with upstream
# PyPI. Note that with --prefer-binary and PIP_EXTRA_INDEX_URL all package dependencies must be available in
# wheel format at PIP_EXTRA_INDEX_URL.
PIP_EXTRA_INDEX_URL="https://dl.espressif.com/pypi/" pip install --prefer-binary cryptography
# No need to request binary wheels for pure Python packages.
pip install pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf pytest-custom_exit_code idf-ci
- name: Make .elf files executable
if: matrix.runner.target == 'linux'
continue-on-error: true
Expand Down
Loading