Skip to content

Commit 4aa9cef

Browse files
authored
Merge branch 'ArmDeveloperEcosystem:main' into content_review
2 parents 04d0d6f + ad03c1a commit 4aa9cef

File tree

483 files changed

+1881
-1477
lines changed

Some content is hidden

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

483 files changed

+1881
-1477
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Generate Monthly Learning Path Report
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
generate-report:
8+
runs-on: ubuntu-24.04-arm
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v5
15+
with:
16+
python-version: '3.12'
17+
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r tools/requirements.txt
22+
23+
- name: Generate monthly report
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
PAT: ${{ secrets.PAT }}
27+
run: |
28+
python tools/generate_monthly_report.py
29+
30+
- name: Commit and push report to repository
31+
run: |
32+
git config user.name github-actions
33+
git config user.email [email protected]
34+
git add reports/
35+
git commit -m "Add monthly learning path report [skip ci]" || echo "No changes to commit"
36+
git push
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-lp.yml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,34 @@ jobs:
2020
**.md
2121
- name: Check for capital letters or spaces in content directory
2222
run: |
23-
echo "Checking for capital letters or spaces in content directory paths..."
23+
echo "Checking for capital letters or spaces in content directory paths (excluding file extensions)..."
24+
25+
tmpfile=$(mktemp)
2426
2527
git diff --name-only origin/${{ github.base_ref }}...HEAD |
2628
grep '^content/' |
27-
grep -E '[A-Z]|[[:space:]]' && {
28-
echo "❌ Found invalid file or directory names with capital letters or spaces in 'content/'"
29-
exit 1
30-
}
29+
while read -r path; do
30+
name=$(basename "$path")
31+
32+
# Strip file extension if it exists
33+
base="${name%.*}"
34+
35+
if [[ "$base" =~ [A-Z] || "$base" =~ [[:space:]] ]]; then
36+
echo "Invalid name: $path"
37+
echo "$path" >> "$tmpfile"
38+
fi
39+
done
40+
41+
if [[ -s "$tmpfile" ]]; then
42+
echo "❌ One or more files or directories in 'content/' contain capital letters or spaces (excluding extensions):"
43+
cat "$tmpfile"
44+
rm "$tmpfile"
45+
exit 1
46+
else
47+
rm "$tmpfile"
48+
echo "✅ No capital letters or spaces found in 'content/' paths."
49+
fi
3150
32-
echo "✅ No capital letters or spaces found in 'content/' paths."
3351
- name: Install dependencies
3452
if: steps.changed-markdown-files.outputs.any_changed == 'true'
3553
run: pip install -r tools/requirements.txt

.github/workflows/update-roadmap-project-dates.yml

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

.wordlist.txt

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4008,4 +4008,57 @@ sdks
40084008
sendgrid
40094009
soafee
40104010
timestamping
4011-
transactional
4011+
transactional
4012+
Biquad
4013+
CFFT
4014+
Christophe
4015+
Corriero
4016+
EBS
4017+
Favergeon
4018+
Fio
4019+
HDDs
4020+
Hanning
4021+
IFFT
4022+
Microbenchmark
4023+
NVMe
4024+
Nerdctl
4025+
NoiseSuppression
4026+
NoiseSuppressionReference
4027+
Paladugu
4028+
Phalani
4029+
PythonWrapper
4030+
Rani
4031+
RelWithDebInfo
4032+
Rescaling
4033+
SNR
4034+
VisualStudioSetup
4035+
WebUI
4036+
buildctl
4037+
channelwise
4038+
checksums
4039+
cmsisdsp
4040+
fio
4041+
frac
4042+
hanning
4043+
hdd
4044+
iops
4045+
iostat
4046+
iotop
4047+
microbenchmark
4048+
microbenchmarking
4049+
nerdctl
4050+
nr
4051+
nvme
4052+
observability
4053+
operationscount
4054+
paddings
4055+
pidstat
4056+
preloads
4057+
recordscount
4058+
rescaled
4059+
rescaling
4060+
subnoise
4061+
transcoders
4062+
transcoding
4063+
upi
4064+
windowsdeveloper

assets/contributors.csv

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,5 @@ Shuheng Deng,Arm,,,,
8484
Yiyang Fan,Arm,,,,
8585
Julien Jayat,Arm,,,,
8686
Geremy Cohen,Arm,geremyCohen,geremyinanutshell,,
87+
Barbara Corriero,Arm,,,,
88+

0 commit comments

Comments
 (0)