Skip to content

Commit 09def7a

Browse files
authored
Merge pull request #2267 from ArmDeveloperEcosystem/main
Prod update
2 parents f522f49 + 6a72cd3 commit 09def7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2992
-520
lines changed

.github/workflows/content-checks.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@ jobs:
5959
name: spellcheck-output
6060
path: spellcheck-output.txt
6161
retention-days: 5 # Default is 90 days
62+
- name: Scan for profanities
63+
run: |
64+
pip install better_profanity
65+
python tools/profanity.py
66+
cat profanity_log.txt
67+
68+
- name: Export profanities
69+
uses: actions/upload-artifact@v4
70+
with:
71+
name: profanities
72+
path: profanity_log.txt
73+
retention-days: 5
6274

6375
- name: Scan for malware
6476
run: |

.github/workflows/external-links.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/maintenance.yml

Lines changed: 0 additions & 108 deletions
This file was deleted.

.github/workflows/profanity.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/test-lp.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test Learning Path
22
on: pull_request
33
env:
44
HUGO_VERSION: 0.130.0
5-
5+
66
jobs:
77
Test-Pull-Request:
88
runs-on: ubuntu-24.04-arm
@@ -58,6 +58,11 @@ jobs:
5858
- name: Install dependencies
5959
if: steps.changed-markdown-files.outputs.any_changed == 'true'
6060
run: pip install -r tools/requirements.txt
61+
- name: Validate _index.md files
62+
if: steps.changed-markdown-files.outputs.any_changed == 'true'
63+
run: |
64+
echo "Checking YAML fields for changed learning paths..."
65+
python3 tools/verify_index_fields.py ${{ steps.changed-markdown-files.outputs.all_changed_files }}
6166
- name: Run test suite for all changed .md files
6267
id: run-suite
6368
if: steps.changed-markdown-files.outputs.any_changed == 'true'

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package-lock.json
88
.vscode
99
.env
1010
startup.sh
11+
data/
1112

1213
# macOS files
1314
*.DS_Store
@@ -22,4 +23,4 @@ z_local_saved/
2223
*.xml
2324

2425
# CTags symbol index
25-
tags
26+
tags

.profanity_ignore.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,25 @@ XX
22
-kill
33
kill
44
KVM
5-
#IO_L3N_T0_DQS_AD1N_35
6-
172.X.X.X
5+
kvm
6+
X.X.X
7+
.xx.
8+
.xxx.
79
naked
10+
facial
11+
Facial
12+
screw
13+
len
14+
LEN
15+
test
16+
TEST
17+
Test
18+
--strip-
819
(x=x
920
**VM
1021
Kill
1122
slave
1223
Slave
24+
A55
25+
a55
26+
455

assets/contributors.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,9 @@ Chenying Kuo,Adlink,evshary,evshary,,
9595
William Liang,,,wyliang,,
9696
Waheed Brown,Arm,https://github.com/armwaheed,https://www.linkedin.com/in/waheedbrown/,,
9797
Aryan Bhusari,Arm,,https://www.linkedin.com/in/aryanbhusari,,
98+
Ken Zhang,Insyde,,kai-di-zhang-b1642a266,,
99+
Ann Cheng,Arm,anncheng-arm,hello-ann,,
98100
Fidel Makatia Omusilibwa,,,,,
101+
Ker Liu,,,,,
102+
Rui Chang,,,,,
103+

content/learning-paths/cross-platform/zenoh-multinode-ros2/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ further_reading:
5151
type: documentation
5252
- resource:
5353
title: Zenoh and ROS 2 Integration Guide
54-
link: https://github.com/eclipse-zenoh/zenoh-plugin-ros2
54+
link: https://github.com/eclipse-zenoh/zenoh-plugin-ros2dds
5555
type: documentation
5656

5757

content/learning-paths/mobile-graphics-and-gaming/ai-camera-pipelines/1-prerequisites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This Learning Path demonstrates how to improve the performance of camera pipelin
1313
## Install required software
1414

1515
Make sure the following tools are installed:
16-
- `git` - a version control system, for cloning the Voice Assistant codebase.
16+
- `git` - a version control system, for cloning the AI camera pipelines codebase.
1717
- `git lfs` - an extension to `git` for managing large files by storing lightweight references instead of the files themselves.
1818
- `docker` - an open-source containerization platform for running applications in isolated environments.
1919
- `libomp` - LLVM's OpenMP runtime library, required for enabling parallel execution during application performance optimization.
@@ -52,7 +52,7 @@ Once you have confirmed that Docker is installed on your machine, you can check
5252
docker run hello-world
5353
Unable to find image 'hello-world:latest' locally
5454
latest: Pulling from library/hello-world
55-
c9c5fd25a1bd: Pull complete
55+
c9c5fd25a1bd: Pull complete
5656
Digest: sha256:c41088499908a59aae84b0a49c70e86f4731e588a737f1637e73c8c09d995654
5757
Status: Downloaded newer image for hello-world:latest
5858

0 commit comments

Comments
 (0)