From 641cf7f7aac47fd29d7fe4b8de9fa4493030bd19 Mon Sep 17 00:00:00 2001 From: nopnop2002 Date: Sat, 8 Jun 2024 08:40:29 +0900 Subject: [PATCH 1/3] Create workflows --- .github/workflows | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows diff --git a/.github/workflows b/.github/workflows new file mode 100644 index 0000000..4254980 --- /dev/null +++ b/.github/workflows @@ -0,0 +1,44 @@ +name: esp-idf-ci-action + +on: + pull_request: + paths: + - "main/**" + - "components/**" + + push: + paths: + - "main/**" + - "components/**" + + workflow_dispatch: + repository_dispatch: + +jobs: + build: + strategy: + fail-fast: false + matrix: + idf_ver: + - release-v4.4 + - release-v5.0 + - release-v5.1 + - release-v5.2 + - release-v5.3 + idf_target: + - esp32 + - esp32s2 + - esp32c3 + - esp32s3 + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + with: + submodules: 'recursive' + - name: Build Application with ESP-IDF + uses: espressif/esp-idf-ci-action@v1 + with: + esp_idf_version: ${{ matrix.idf_ver }} + target: ${{ matrix.idf_target }} + path: '.' From 97c334dcb3bcbe46288a3a3d1493042541b90984 Mon Sep 17 00:00:00 2001 From: nopnop2002 Date: Sat, 8 Jun 2024 08:43:24 +0900 Subject: [PATCH 2/3] Delete .github/workflows --- .github/workflows | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows diff --git a/.github/workflows b/.github/workflows deleted file mode 100644 index 4254980..0000000 --- a/.github/workflows +++ /dev/null @@ -1,44 +0,0 @@ -name: esp-idf-ci-action - -on: - pull_request: - paths: - - "main/**" - - "components/**" - - push: - paths: - - "main/**" - - "components/**" - - workflow_dispatch: - repository_dispatch: - -jobs: - build: - strategy: - fail-fast: false - matrix: - idf_ver: - - release-v4.4 - - release-v5.0 - - release-v5.1 - - release-v5.2 - - release-v5.3 - idf_target: - - esp32 - - esp32s2 - - esp32c3 - - esp32s3 - runs-on: ubuntu-latest - steps: - - name: Checkout repo - uses: actions/checkout@v4 - with: - submodules: 'recursive' - - name: Build Application with ESP-IDF - uses: espressif/esp-idf-ci-action@v1 - with: - esp_idf_version: ${{ matrix.idf_ver }} - target: ${{ matrix.idf_target }} - path: '.' From c61f75e63a988537aa13a8693934d7155e92f792 Mon Sep 17 00:00:00 2001 From: nopnop2002 Date: Sat, 8 Jun 2024 08:44:10 +0900 Subject: [PATCH 3/3] Create espidf-compile.yml --- .github/workflows/espidf-compile.yml | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/espidf-compile.yml diff --git a/.github/workflows/espidf-compile.yml b/.github/workflows/espidf-compile.yml new file mode 100644 index 0000000..4254980 --- /dev/null +++ b/.github/workflows/espidf-compile.yml @@ -0,0 +1,44 @@ +name: esp-idf-ci-action + +on: + pull_request: + paths: + - "main/**" + - "components/**" + + push: + paths: + - "main/**" + - "components/**" + + workflow_dispatch: + repository_dispatch: + +jobs: + build: + strategy: + fail-fast: false + matrix: + idf_ver: + - release-v4.4 + - release-v5.0 + - release-v5.1 + - release-v5.2 + - release-v5.3 + idf_target: + - esp32 + - esp32s2 + - esp32c3 + - esp32s3 + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + with: + submodules: 'recursive' + - name: Build Application with ESP-IDF + uses: espressif/esp-idf-ci-action@v1 + with: + esp_idf_version: ${{ matrix.idf_ver }} + target: ${{ matrix.idf_target }} + path: '.'