feat(esp_delta_ota): Added pytest for the delta OTA example #2011
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: Push components to Espressif Component Service | |
| on: | |
| # For pull requests: perform upload with "--dry-run" argument, | |
| # i.e. validate that the component passes all checks for being uploaded. | |
| pull_request: | |
| # For pushes to master: actually upload the components to the registry. | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| upload_components: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - run: | | |
| echo "${{ ( github.ref_name != 'master' || github.repository_owner != 'espressif' ) && 'Checking' || 'Uploading' }} components" | |
| - name: Upload components to component service | |
| uses: espressif/upload-components-ci-action@v2 | |
| with: | |
| components: | | |
| argtable3 | |
| bdc_motor | |
| catch2 | |
| cbor | |
| ccomp_timer | |
| cjson | |
| coap | |
| coremark | |
| dhara | |
| eigen | |
| esp_daylight | |
| esp_cli_commands | |
| esp_delta_ota | |
| esp_encrypted_img | |
| esp_flash_dispatcher | |
| esp_gcov | |
| esp_isotp | |
| esp_lcd_qemu_rgb | |
| esp_linenoise | |
| esp_jpeg | |
| esp_schedule | |
| esp_cli | |
| esp_serial_slave_link | |
| expat | |
| fmt | |
| freetype | |
| iqmath | |
| jsmn | |
| json_generator | |
| json_parser | |
| led_strip | |
| libsodium | |
| network_provisioning | |
| nghttp | |
| onewire_bus | |
| pcap | |
| pid_ctrl | |
| qrcode | |
| quirc | |
| sh2lib | |
| spi_nand_flash | |
| supertinycron | |
| thorvg | |
| touch_element | |
| unit-test-app | |
| zlib | |
| libpng | |
| libjpeg-turbo | |
| namespace: "espressif" | |
| # API token will only be available in the master branch in the main repository. | |
| # However, dry-run doesn't require a valid token. | |
| api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }} | |
| dry_run: ${{ github.ref_name != 'master' || github.repository_owner != 'espressif' }} |