From 042e82b80168dcdddfa35634878a0bb424ee97c4 Mon Sep 17 00:00:00 2001 From: Supper Thomas <78900636@qq.com> Date: Fri, 28 Feb 2025 11:10:37 +0800 Subject: [PATCH 1/2] Update bsp_buildings.yml --- .github/workflows/bsp_buildings.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bsp_buildings.yml b/.github/workflows/bsp_buildings.yml index 8a17fb08e07..ceeef9d213a 100644 --- a/.github/workflows/bsp_buildings.yml +++ b/.github/workflows/bsp_buildings.yml @@ -32,7 +32,7 @@ jobs: build: runs-on: ubuntu-22.04 name: ${{ matrix.legs.RTT_BSP }} - if: github.repository_owner == 'RT-Thread' + #if: github.repository_owner == 'RT-Thread' strategy: fail-fast: false matrix: @@ -408,7 +408,19 @@ jobs: uses: actions/setup-python@main with: python-version: 3.8 + + - name: Get changed files + id: changed-files + uses: tj-actions/changed-files@v45 + - name: List all changed files + env: + ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} + run: | + for file in ${ALL_CHANGED_FILES}; do + echo "$file was changed" + done + - name: Install Tools shell: bash run: | From 2777ec3041839f5b236e997900328e689132d357 Mon Sep 17 00:00:00 2001 From: Supper Thomas <78900636@qq.com> Date: Fri, 28 Feb 2025 11:11:05 +0800 Subject: [PATCH 2/2] Update board.c --- bsp/airm2m/air32f103/board/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/airm2m/air32f103/board/board.c b/bsp/airm2m/air32f103/board/board.c index 38e7c702a30..a50d74a7d6b 100644 --- a/bsp/airm2m/air32f103/board/board.c +++ b/bsp/airm2m/air32f103/board/board.c @@ -7,7 +7,7 @@ * Date Author Notes * 2022-02-22 airm2m first version */ - + #include "board.h" void SystemClock_Config(void)