Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Commit 92751bd

Browse files
committed
CoreValidation: Adapt path changes for Cortex-M core
1 parent 58bccd6 commit 92751bd

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/caller-corevalidation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66
paths:
77
- .github/workflows/caller-corevalidation.yml
8-
- CMSIS/Core/**/*
8+
- CMSIS/Core_M/**/*
99
- CMSIS/Core_A/**/*
1010
- CMSIS/CoreValidation/**/*
1111
- Device/ARM/**/*

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on:
55
push:
66
branches: [ develop ]
77
paths:
8-
- 'CMSIS/Core/**'
8+
- 'CMSIS/Core_M/**'
99
- 'CMSIS/Core_A/**'
1010
- 'CMSIS/CoreValidation/**'
1111
- 'Device/ARM/**'
1212
pull_request:
1313
branches: [ develop ]
1414
paths:
1515
- '.github/workflows/codeql-analysis.yml'
16-
- 'CMSIS/Core/**'
16+
- 'CMSIS/Core_M/**'
1717
- 'CMSIS/Core_A/**'
1818
- 'CMSIS/CoreValidation/**'
1919
- 'Device/ARM/**'

.github/workflows/fileheader.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
branches: [ develop ]
66
paths:
7-
- 'CMSIS/Core/**'
7+
- 'CMSIS/Core_M/**'
88
- 'CMSIS/Core_A/**'
99
- 'CMSIS/RTOS2/Include/**'
1010
- 'CMSIS/RTOS2/Source/**'

CMSIS/CoreValidation/Project/avh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ backend:
66
instance-type: t2.micro
77
upload:
88
- ARM.CMSIS.pdsc
9-
- CMSIS/Core/**/*
9+
- CMSIS/Core_M/**/*
1010
- CMSIS/Core_A/**/*
1111
- CMSIS/CoreValidation/**/*
1212
- -:CMSIS/CoreValidation/Project/Core_Validation-*.zip

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ patternDocker = [
3737
]
3838

3939
patternCoreM = [
40-
'^CMSIS/Core/Include/.*',
40+
'^CMSIS/Core_M/Include/.*',
4141
'^Device/ARM/ARMCM.*'
4242
]
4343

linter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ def check_build(self):
188188
def check_corem(self):
189189
"""CMSIS-Core(M) version"""
190190
v = self.cmsis_corem_component()
191-
self.verify_version("CMSIS/DoxyGen/Core/core.dxy", v)
192-
self.verify_version("CMSIS/DoxyGen/Core/src/Overview.txt", v)
191+
self.verify_version("CMSIS/DoxyGen/Core_M/core.dxy", v)
192+
self.verify_version("CMSIS/DoxyGen/Core_M/src/Overview.txt", v)
193193
self.verify_version("CMSIS/DoxyGen/General/src/introduction.txt", v, component="CMSIS-Core (Cortex-M)")
194194
self.verify_version(self._pack.location(), v, component="CMSIS-Core(M)")
195195

0 commit comments

Comments
 (0)