mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2026-08-06 21:24:28 +00:00
Hygiene update to manifest verification in CI (#671)
As the manifest verification script has been moved to FreeRTOS/CI-CD-Github-Actions as a GitHub Action along with the added functionality of verifying that manifest.yml versions match the current submoduled pointers in the repository, this PR updates the CI check for manifest verification to take advantage of the new manifest-verifier action from the repository.
This commit is contained in:
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@@ -128,14 +128,18 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
- name: Install Python3
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
- name: Install dependencies
|
||||
run: python3 -m pip install -r .github/scripts/verify_manifest_requirements.txt
|
||||
- name: Run script to verify manifest.yml
|
||||
run: python3 .github/scripts/verify_manifest.py
|
||||
python-version: '3.x'
|
||||
- name: Run manifest verifier
|
||||
uses: FreeRTOS/CI-CD-Github-Actions/manifest-verifier@main
|
||||
with:
|
||||
path: ./
|
||||
exclude-submodules: FreeRTOS-Plus/Test/CMock,FreeRTOS/Test/CMock/CMock,FreeRTOS/Test/litani
|
||||
fail-on-incorrect-version: true
|
||||
|
||||
memory-statistics:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user