From ee19f35e2c6c814cd135d6830591553c22a6c85d Mon Sep 17 00:00:00 2001 From: GOB Date: Tue, 22 Oct 2024 14:56:47 +0900 Subject: [PATCH] Add checkout of dependent libraries for examples --- .github/workflows/arduino-esp-v2-build-check.yml | 6 ++++++ .github/workflows/arduino-esp-v3-build-check.yml | 6 ++++++ .github/workflows/arduino-m5-build-check.yml | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/.github/workflows/arduino-esp-v2-build-check.yml b/.github/workflows/arduino-esp-v2-build-check.yml index 337a22e..66b66e7 100644 --- a/.github/workflows/arduino-esp-v2-build-check.yml +++ b/.github/workflows/arduino-esp-v2-build-check.yml @@ -86,6 +86,12 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} + - name: Checkout M5Unit-METER for examples + uses: actions/checkout@v4 + with: + repository: m5stack/M5Unit-METER + path: CustomLibrary_M5Unit-METER + # Build - name: Compile examples uses: ArminJo/arduino-test-compile@master diff --git a/.github/workflows/arduino-esp-v3-build-check.yml b/.github/workflows/arduino-esp-v3-build-check.yml index a28999f..3091056 100644 --- a/.github/workflows/arduino-esp-v3-build-check.yml +++ b/.github/workflows/arduino-esp-v3-build-check.yml @@ -102,6 +102,12 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} + - name: Checkout M5Unit-METER for examples + uses: actions/checkout@v4 + with: + repository: m5stack/M5Unit-METER + path: CustomLibrary_M5Unit-METER + # Build - name: Compile examples uses: ArminJo/arduino-test-compile@master diff --git a/.github/workflows/arduino-m5-build-check.yml b/.github/workflows/arduino-m5-build-check.yml index 7abf448..7fe8ac9 100644 --- a/.github/workflows/arduino-m5-build-check.yml +++ b/.github/workflows/arduino-m5-build-check.yml @@ -104,6 +104,12 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} + - name: Checkout M5Unit-METER for examples + uses: actions/checkout@v4 + with: + repository: m5stack/M5Unit-METER + path: CustomLibrary_M5Unit-METER + # Build - name: Compile examples uses: ArminJo/arduino-test-compile@master