diff options
| author | mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> | 2023-11-27 02:41:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 02:41:33 +0000 |
| commit | d8deb4f0419e804af273efbc89e75d5c8fbb15e1 (patch) | |
| tree | e9f35fa73e674b274751994bfd8fbe9aebaf0995 /.github/workflows | |
| parent | 9ee13468724803310048739f4c0139a9fb07eccc (diff) | |
Update and rename esp-idf_with-gfx.yml to esp-idf-4.4.4_with-gfx.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/esp-idf-4.4.4_with-gfx.yml | 33 | ||||
| -rw-r--r-- | .github/workflows/esp-idf_with-gfx.yml | 48 |
2 files changed, 33 insertions, 48 deletions
diff --git a/.github/workflows/esp-idf-4.4.4_with-gfx.yml b/.github/workflows/esp-idf-4.4.4_with-gfx.yml new file mode 100644 index 0000000..095a46b --- /dev/null +++ b/.github/workflows/esp-idf-4.4.4_with-gfx.yml @@ -0,0 +1,33 @@ +name: esp-idf 4.4.4 without Adafruit GFX Library + +on: + push: + paths-ignore: + - '**.md' + - 'doc/**' + pull_request: + paths-ignore: + - '**.md' + - 'doc/**' + +jobs: + build: + name: esp-idf 4.4.4 without Adafruit GFX + + runs-on: ubuntu-latest + + steps: + - name: Checkout repo + uses: actions/checkout@v4 + with: + submodules: 'recursive' + - name: Checkout ESP32-HUB75-MatrixPanel-I2S-DMA component + uses: actions/checkout@v4 + with: + path: 'examples/esp-idf/without-gfx/components/ESP32-HUB75-MatrixPanel-I2S-DMA' + - name: esp-idf build + uses: espressif/esp-idf-ci-action@v1 + with: + esp_idf_version: v4.4.4 + target: esp32 + path: 'examples/esp-idf/without-gfx' diff --git a/.github/workflows/esp-idf_with-gfx.yml b/.github/workflows/esp-idf_with-gfx.yml deleted file mode 100644 index 6d31159..0000000 --- a/.github/workflows/esp-idf_with-gfx.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: esp-idf with Adafruit GFX Library - -on: - push: - paths-ignore: - - '**.md' - - 'doc/**' - pull_request: - paths-ignore: - - '**.md' - - 'doc/**' - -jobs: - build: - name: esp-idf 4.4.4 with Adafruit GFX - - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v4 - with: - submodules: 'recursive' - - name: Checkout ESP32-HUB75-MatrixPanel-I2S-DMA component - uses: actions/checkout@v4 - with: - path: 'examples/esp-idf/with-gfx/components/ESP32-HUB75-MatrixPanel-I2S-DMA' - - name: Checkout Adafruit-GFX-Library repo - uses: actions/checkout@v4 - with: - repository: 'adafruit/Adafruit-GFX-Library' - path: 'examples/esp-idf/with-gfx/components/Adafruit-GFX-Library' - - name: Checkout Adafruit_BusIO repo - uses: actions/checkout@v4 - with: - repository: 'adafruit/Adafruit_BusIO' - path: 'examples/esp-idf/with-gfx/components/Adafruit_BusIO' - - name: Checkout arduino-esp32 repo - uses: actions/checkout@v4 - with: - repository: 'espressif/arduino-esp32' - path: 'examples/esp-idf/with-gfx/components/arduino' - - name: esp-idf build - uses: espressif/esp-idf-ci-action@v1 - with: - esp_idf_version: v4.4.4 - target: esp32 - path: 'examples/esp-idf/with-gfx' |
