Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Build_Examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
compiler: [AC6, GCC, CLANG]

runs-on: ubuntu-24.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v7
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/cmsis_rv2.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: RTOS2 Validation

on:
Expand All @@ -11,6 +10,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

env:
CMSIS_PACK_ROOT: ${{ github.workspace }}/.packs
ARM_UBL_ACTIVATION_CODE: ${{ secrets.ARM_UBL_ACTIVATION_CODE }}
Expand All @@ -22,7 +24,7 @@ jobs:
matrix:
compiler: [AC6, GCC, Clang]

runs-on: ubuntu-24.04
runs-on: ubuntu-latest

steps:
- name: Checkout CMSIS-FreeRTOS
Expand Down Expand Up @@ -59,12 +61,12 @@ jobs:
pip install -r ./CMSIS-RTOS2_Validation/Project/requirements.txt

- name: Setup vcpkg environment
uses: ARM-software/cmsis-actions/vcpkg@v1.1
uses: ARM-software/cmsis-actions/vcpkg@v1
with:
config: ./CMSIS-RTOS2_Validation/.ci/vcpkg-configuration.json

- name: Activate Arm tool license
uses: ARM-software/cmsis-actions/armlm@v1.1
uses: ARM-software/cmsis-actions/armlm@v1
with:
server: https://mdk-preview.keil.arm.com
product: KEMDK-COM0
Expand Down Expand Up @@ -113,9 +115,11 @@ jobs:

publish-test-results:
needs: [build-and-run]
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'

permissions:
checks: write
pull-requests: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -127,10 +131,6 @@ jobs:

- name: Publish Test Results
if: ${{ env.GITHUB_TOKEN }}
uses: EnricoMi/publish-unit-test-result-action@v2
uses: EnricoMi/publish-unit-test-result-action/linux@v2
with:
commit: ${{ github.event.workflow_run.head_sha }}
event_file: ${{ github.event_path }}
report_individual_runs: true
event_name: ${{ github.event.workflow_run.event }}
files: "artifacts/**/*.junit"
4 changes: 2 additions & 2 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
pack:
name: Generate pack
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
Expand All @@ -28,7 +28,7 @@ jobs:

- uses: Open-CMSIS-Pack/gen-pack-action@main
with:
doxygen-version: 1.13.2 # default
doxygen-version: 1.13.2 # default
packchk-version: 1.3.95 # default
gen-doc-script: ./Documentation/Doxygen/gen_doc.sh # skipped by default
doc-path: ./Documentation/html # skipped by default
Expand Down
Loading