Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 59f1c57

Browse files
Fix build: unique names required for v4 upload-artifact task (FreeRTOS#1274) (FreeRTOS#1275)
- fixes kernal unit test build broken since 9245b4a
1 parent d80937d commit 59f1c57

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/kernel-unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
- name: Archive code coverage data
3131
uses: actions/upload-artifact@v4
3232
with:
33-
name: coverage-data
33+
name: submodule-coverage-data
3434
path: FreeRTOS/Test/CMock/build/cmock_test*
3535
- name: Archive code coverage html report
3636
uses: actions/upload-artifact@v4
3737
with:
38-
name: coverage-report
38+
name: submodule-coverage-report
3939
path: FreeRTOS/Test/CMock/build/coverage
4040
run-upstream:
4141
name: FreeRTOS-Kernel Main Branch
@@ -71,10 +71,10 @@ jobs:
7171
- name: Archive code coverage data
7272
uses: actions/upload-artifact@v4
7373
with:
74-
name: coverage-data
74+
name: main-branch-coverage-data
7575
path: FreeRTOS/Test/CMock/build/cmock_test*
7676
- name: Archive code coverage html report
7777
uses: actions/upload-artifact@v4
7878
with:
79-
name: coverage-report
79+
name: main-branch-coverage-report
8080
path: FreeRTOS/Test/CMock/build/coverage

0 commit comments

Comments
 (0)