Add configurable CFG_TUD_ENDPOINT0_SIZE and CFG_TUD_HID_EP_BUFSIZE #1314
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: Build | |
| on: [pull_request, push, repository_dispatch] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| ARDUINO_LIBS: "\"Adafruit SPIFlash\" \"Adafruit seesaw Library\" \"Adafruit NeoPixel\" \"Adafruit Circuit Playground\" \"Adafruit InternalFlash\" \"SdFat - Adafruit Fork\" \"SD\" \"MIDI Library\" \"Pico PIO USB\"" | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v3.0.1 | |
| - name: Checkout adafruit/ci-arduino | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: adafruit/ci-arduino | |
| path: ci | |
| - name: pre-install | |
| run: bash ci/actions_install.sh | |
| # - name: clang | |
| # run: python3 ci/run-clang-format.py -r src/arduino | |
| - name: doxygen | |
| env: | |
| GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }} | |
| PRETTYNAME : "Adafruit TinyUSB Library" | |
| run: bash ci/doxy_gen_and_deploy.sh | |
| # --------------------------------------- | |
| # build | |
| # --------------------------------------- | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: pre-commit | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arduino-platform: | |
| # ESP32 ci use dev json | |
| - 'feather_esp32_v2' | |
| - 'feather_esp32s2' | |
| - 'feather_esp32s3' | |
| - 'esp32p4' | |
| # nRF52 | |
| - 'cpb' | |
| - 'nrf52840' | |
| # RP2040 | |
| - 'feather_rp2040_tinyusb' | |
| - 'pico_rp2040_tinyusb_host' | |
| # SAMD | |
| - 'metro_m0_tinyusb' | |
| - 'metro_m4_tinyusb' | |
| # Ch32v2 | |
| - 'CH32V20x_EVT' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Checkout adafruit/ci-arduino | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: adafruit/ci-arduino | |
| path: ci | |
| - name: pre-install | |
| run: bash ci/actions_install.sh | |
| - name: Install Libraries | |
| run: | | |
| arduino-cli lib install ${{ env.ARDUINO_LIBS }} | |
| arduino-cli lib list | |
| - name: test platforms | |
| run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} |