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
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Example
name: Build examples
on:
workflow_dispatch:
pull_request:
paths:
- .github/workflows/examples.yaml
- CMSIS/RTOS2/FreeRTOS/Examples/*
- CMSIS/RTOS2/FreeRTOS/Include/*
- CMSIS/RTOS2/FreeRTOS/Source/*
- .github/workflows/Build_Examples.yml
- CMSIS/RTOS2/FreeRTOS/Examples/**/*
- CMSIS/RTOS2/FreeRTOS/Include/**/*
- CMSIS/RTOS2/FreeRTOS/Source/**/*
- Source/**/*
- ARM.CMSIS-FreeRTOS.pdsc
push:
Expand Down
File renamed without changes.
9 changes: 7 additions & 2 deletions .github/workflows/build.yaml → .github/workflows/pack.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build documentation and pack
name: Build pack
on:
workflow_dispatch:
push:
Expand All @@ -7,6 +7,11 @@ on:
branches: [ main ]
release:
types: [published]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
pack:
name: Generate pack
Expand All @@ -17,7 +22,7 @@ jobs:
fetch-depth: 0

- name: Fetch tags
if: ${{ github.event_name == 'release' }}
if: github.event_name == 'release'
run: |
git fetch --tags --force

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![License Apache--2.0](https://img.shields.io/badge/License-Apache--2.0-green?label=License)](https://github.com/Arm-Software/CMSIS-FreeRTOS/blob/main/LICENSE)
[![License MIT](https://img.shields.io/badge/License-MIT-yellow?label=License)](https://github.com/Arm-Software/CMSIS-FreeRTOS/blob/main/LICENSE)
[![Build Examples](https://img.shields.io/github/actions/workflow/status/Arm-Software/CMSIS-FreeRTOS/examples.yaml?logo=arm&logoColor=0091bd&label=Build%20Examples)](https://github.com/Arm-Software/CMSIS-FreeRTOS/tree/main/.github/workflows/examples.yaml)
[![RTOS2 Validation](https://img.shields.io/github/actions/workflow/status/Arm-Software/CMSIS-FreeRTOS/examples.yaml?logo=arm&logoColor=0091bd&label=RTOS%20Validation)](https://github.com/Arm-Software/CMSIS-FreeRTOS/tree/main/.github/workflows/cmsis_rv2.yaml)
[![Build pack](https://img.shields.io/github/actions/workflow/status/Arm-Software/CMSIS-FreeRTOS/build.yaml?logo=arm&logoColor=0091bd&label=Build%20pack)](./.github/workflows/build.yaml)
[![Build Examples](https://img.shields.io/github/actions/workflow/status/Arm-Software/CMSIS-FreeRTOS/Build_Examples.yml?logo=arm&logoColor=0091bd&label=Build%20Examples)](https://github.com/Arm-Software/CMSIS-FreeRTOS/tree/main/.github/workflows/Build_Examples.yml)
[![RTOS2 Validation](https://img.shields.io/github/actions/workflow/status/Arm-Software/CMSIS-FreeRTOS/cmsis_rv2.yml?logo=arm&logoColor=0091bd&label=RTOS%20Validation)](https://github.com/Arm-Software/CMSIS-FreeRTOS/tree/main/.github/workflows/cmsis_rv2.yml)
[![Build pack](https://img.shields.io/github/actions/workflow/status/Arm-Software/CMSIS-FreeRTOS/pack.yml?logo=arm&logoColor=0091bd&label=Build%20pack)](./.github/workflows/pack.yml)

# CMSIS-FreeRTOS

Expand Down
Loading