From 0691868b7def15dd9225edcef39cce107be2918e Mon Sep 17 00:00:00 2001 From: yutotnh <57719497+yutotnh@users.noreply.github.com> Date: Sun, 6 Aug 2023 14:55:40 +0900 Subject: [PATCH 1/3] =?UTF-8?q?chore:=20=E3=83=93=E3=83=AB=E3=83=89?= =?UTF-8?q?=E3=83=87=E3=82=A3=E3=83=AC=E3=82=AF=E3=83=88=E3=83=AA=E3=81=B8?= =?UTF-8?q?=E3=81=AE=E7=A7=BB=E5=8B=95=E3=81=99=E3=82=8B=E3=82=B3=E3=83=9E?= =?UTF-8?q?=E3=83=B3=E3=83=89=E3=82=92=E5=A4=89=E6=9B=B4=20#259?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 46acdf2..3adb7e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,7 +64,7 @@ jobs: - name: build-mbed-tools run: | - cd .. + cd ${GITHUB_WORKSPACE} mbed-tools new . cp spirit/.github/workflows/build-mbed/main.cpp . cp spirit/.github/workflows/build-mbed-tools/CMakeLists.txt . From 156dd3218cfe81af00313f2c1a28ed7670a6f7ce Mon Sep 17 00:00:00 2001 From: yutotnh <57719497+yutotnh@users.noreply.github.com> Date: Sun, 6 Aug 2023 20:40:21 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20main.cpp=E3=81=AE=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE=E3=81=A8spirit=E3=83=87=E3=82=A3=E3=83=AC=E3=82=AF?= =?UTF-8?q?=E3=83=88=E3=83=AA=E3=81=AE=E4=BD=8D=E7=BD=AE=E3=82=92=E5=88=A5?= =?UTF-8?q?=E3=81=AB=E3=81=99=E3=82=8B=20#259?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3adb7e5..8781ee9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,6 +40,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + path: spirit - name: build-mbed-cli run: | @@ -61,10 +63,11 @@ jobs: steps: - uses: actions/checkout@v3 + with: + path: spirit - name: build-mbed-tools run: | - cd ${GITHUB_WORKSPACE} mbed-tools new . cp spirit/.github/workflows/build-mbed/main.cpp . cp spirit/.github/workflows/build-mbed-tools/CMakeLists.txt . From 7dbc04424081241d1d54e5c48165b9bf08dc6cf5 Mon Sep 17 00:00:00 2001 From: yutotnh <57719497+yutotnh@users.noreply.github.com> Date: Sun, 6 Aug 2023 20:47:53 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20mbed-cli=E3=81=A7main.cpp=E3=81=AE?= =?UTF-8?q?=E3=82=B3=E3=83=94=E3=83=BC=E3=81=AE=E3=83=91=E3=82=B9=E3=81=8C?= =?UTF-8?q?=E9=96=93=E9=81=95=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3=20#259?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8781ee9..821e92d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: run: | mbed new . mbed deploy - cp .github/workflows/build-mbed/main.cpp . + cp spirit/.github/workflows/build-mbed/main.cpp . mbed compile -t GCC_ARM -m ${{ matrix.target }} --profile ${{ matrix.profile }} build-cli-v2: