Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
pack:
name: Generate pack
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -23,8 +23,8 @@ jobs:

- uses: Open-CMSIS-Pack/gen-pack-action@main
with:
doxygen-version: 1.9.6 # default
packchk-version: 1.3.95 # default
doxygen-version: 1.13.2 # default
packchk-version: 1.4.2 # default
gen-doc-script: ./DoxyGen/gen_doc.sh # skipped by default
check-links-script: ./DoxyGen/check_links.sh # skipped by default
doc-path: ./Documentation/html # skipped by default
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmsis_rv2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:

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

env:
Expand All @@ -163,4 +163,4 @@ jobs:
report_individual_runs: true
event_name: ${{ github.event.workflow_run.event }}
files: "artifacts/**/*.junit"


2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion DoxyGen/CMSIS-RTOS2_Validation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The CMSIS-RTOS2 validation tests and verifies:
This manual contains the following chapters:
- \ref test_results - Explains how to interpret the test results.
- \ref config - Contains information about test suite configuration options
- <a class="el" href="./modules.html">Reference</a> - Explains the individual CMSIS-RTOS2 API tests.
- <a class="el" href="./topics.html">Reference</a> - Explains the individual CMSIS-RTOS2 API tests.

This manual assumes that you are familiar with Keil MDK. Refer to
<a href="http://www2.keil.com/mdk5/install" target="_blank">MDK Version 5 - Getting Started</a> for additional information.
Expand Down
1,089 changes: 686 additions & 403 deletions DoxyGen/Doxyfile.dxy.in

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion DoxyGen/check_links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -o pipefail

DIRNAME=$(dirname $(realpath $0))
REQUIRED_GEN_PACK_LIB="0.2.2"
REQUIRED_GEN_PACK_LIB="0.11.3"

############ gen-pack library ###########

Expand Down
6 changes: 3 additions & 3 deletions DoxyGen/gen_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
#
# Pre-requisites:
# - bash shell (for Windows: install git for Windows)
# - doxygen 1.9.2
# - doxygen 1.13.2
# - git
# - gh cli

set -o pipefail

DIRNAME=$(dirname $(realpath $0))
DOXYGEN=$(which doxygen)
REQ_DXY_VERSION="1.9.2"
REQUIRED_GEN_PACK_LIB="0.2.2"
REQ_DXY_VERSION="1.13.2"
REQUIRED_GEN_PACK_LIB="0.11.3"

############ gen-pack library ###########

Expand Down
2 changes: 1 addition & 1 deletion gen_pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -o pipefail

# Set version of gen pack library
REQUIRED_GEN_PACK_LIB="0.2.2"
REQUIRED_GEN_PACK_LIB="0.11.3"

# Set default command line arguments
DEFAULT_ARGS=(-c "")
Expand Down
Loading