Skip to content

Commit

Permalink
CoreValidation: Adapt path changes for Cortex-M core
Browse files Browse the repository at this point in the history
  • Loading branch information
Masmiseim36 committed Dec 17, 2022
1 parent 58bccd6 commit 92751bd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/caller-corevalidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
paths:
- .github/workflows/caller-corevalidation.yml
- CMSIS/Core/**/*
- CMSIS/Core_M/**/*
- CMSIS/Core_A/**/*
- CMSIS/CoreValidation/**/*
- Device/ARM/**/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
push:
branches: [ develop ]
paths:
- 'CMSIS/Core/**'
- 'CMSIS/Core_M/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
pull_request:
branches: [ develop ]
paths:
- '.github/workflows/codeql-analysis.yml'
- 'CMSIS/Core/**'
- 'CMSIS/Core_M/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fileheader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
branches: [ develop ]
paths:
- 'CMSIS/Core/**'
- 'CMSIS/Core_M/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/RTOS2/Include/**'
- 'CMSIS/RTOS2/Source/**'
Expand Down
2 changes: 1 addition & 1 deletion CMSIS/CoreValidation/Project/avh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ backend:
instance-type: t2.micro
upload:
- ARM.CMSIS.pdsc
- CMSIS/Core/**/*
- CMSIS/Core_M/**/*
- CMSIS/Core_A/**/*
- CMSIS/CoreValidation/**/*
- -:CMSIS/CoreValidation/Project/Core_Validation-*.zip
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ patternDocker = [
]

patternCoreM = [
'^CMSIS/Core/Include/.*',
'^CMSIS/Core_M/Include/.*',
'^Device/ARM/ARMCM.*'
]

Expand Down
4 changes: 2 additions & 2 deletions linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ def check_build(self):
def check_corem(self):
"""CMSIS-Core(M) version"""
v = self.cmsis_corem_component()
self.verify_version("CMSIS/DoxyGen/Core/core.dxy", v)
self.verify_version("CMSIS/DoxyGen/Core/src/Overview.txt", v)
self.verify_version("CMSIS/DoxyGen/Core_M/core.dxy", v)
self.verify_version("CMSIS/DoxyGen/Core_M/src/Overview.txt", v)
self.verify_version("CMSIS/DoxyGen/General/src/introduction.txt", v, component="CMSIS-Core (Cortex-M)")
self.verify_version(self._pack.location(), v, component="CMSIS-Core(M)")

Expand Down

0 comments on commit 92751bd

Please sign in to comment.