Skip to content

Commit 4134a74

Browse files
committed
Merge remote-tracking branch 'nasa/devel' into work/PrmDbFppIndex
2 parents 0ed4a83 + 34a4e2c commit 4134a74

File tree

1,533 files changed

+46582
-22292
lines changed

Some content is hidden

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

1,533 files changed

+46582
-22292
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ labels: bug
66
assignees: ''
77

88
---
9+
910
| | |
1011
|:---|:---|
1112
|**_F´ Version_**| |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: ROSES Pattern
3+
about: A standard pattern funded for documentation via ROSES.
4+
title: ROSES - [Pattern]
5+
labels: ROSES
6+
assignees: ''
7+
8+
---
9+
10+
### Description
11+
[Describe pattern here].
12+
13+
### Deliverables (completed before closing issue):
14+
- [ ] Select deliverable type
15+
- [ ] Reference
16+
- [ ] User Guide
17+
- [ ] How-To
18+
- [ ] Tutorial
19+
- [ ] Other (tool, fill-in, etc)
20+
- [ ] Create documentation
21+
- [ ] Create example in examples repository
22+
- [ ] Pass expert review
23+
- [ ] Pass user review

.github/actions/autodoc.bash

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
set timeout 180
2+
spawn fprime-bootstrap project
3+
expect -re {.*Project name.*}
4+
send "MyProject\r"
5+
expect eof
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
set timeout 60
2+
spawn fprime-util new --component
3+
expect -re {.*Component name.*}
4+
send "MyComponent\r"
5+
expect -re {.*Component short description.*}
6+
send "test component\r"
7+
expect -re {.*Component namespace.*}
8+
send "Components\r"
9+
expect -re {.*Select component kind}
10+
send "1\r"
11+
expect -re {.*Enable Commands.*}
12+
send "1\r"
13+
expect -re {.*Enable Telemetry.*}
14+
send "1\r"
15+
expect -re {.*Enable Events.*}
16+
send "1\r"
17+
expect -re {.*Enable Parameters.*}
18+
send "1\r"
19+
expect -re {Add MyComponent to.*}
20+
send "yes\r"
21+
expect -re {Generate implementation files.*}
22+
send "yes\r"
23+
expect -re {.*Created new component.*}
24+
expect eof
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
set timeout 60
2+
spawn fprime-util new --deployment
3+
expect -re {Deployment name.*}
4+
send "MyDeployment\r"
5+
expect -re {.*Select communication driver type}
6+
send "1\r"
7+
expect -re "Add .*MyDeployment.*"
8+
send "yes\r"
9+
expect eof

.github/actions/entrypoint.sh

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

.github/actions/markdown-check/mlc-config.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,19 @@
44
"pattern": "^(https?://)?localhost"
55
},
66
{
7-
"pattern": "https://www.raspberrypi.com/documentation/computers/configuration.html"
7+
"pattern": "https?://"
88
},
99
{
10-
"pattern": "https://en.wikipedia.org/wiki/"
11-
}
12-
],
13-
"replacementPatterns": [
10+
"pattern": "./tutorials-"
11+
},
12+
{
13+
"pattern": "^\\.\\./tree/HEAD/"
14+
},
1415
{
15-
"pattern": "^[./]*api/cmake/",
16-
"replacement": "https://nasa.github.io/fprime/UsersGuide/api/cmake/"
16+
"pattern": ".*\\.[chf]pp"
1717
},
1818
{
19-
"pattern": "^[./]*api/c\\+\\+/",
20-
"replacement": "https://nasa.github.io/fprime/UsersGuide/api/c++/"
19+
"pattern": "../../../.."
2120
}
2221
]
23-
}
22+
}

.github/actions/setup/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ runs:
99
steps:
1010
- run: git fetch --tags
1111
shell: bash
12-
- name: Add Python bin to PATH
13-
run: echo "/Library/Frameworks/Python.framework/Versions/Current/bin" >> $GITHUB_PATH
14-
shell: bash
12+
# Python path should be added at a higher level
1513
- run: pip3 install setuptools_scm wheel urllib3
1614
shell: bash
1715
- run: pip3 install -U -r ${{ inputs.location }}/requirements.txt

.github/actions/spelling/advice.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ If items relate to a ...
99
File paths are Perl 5 Regular Expressions - you can [test](
1010
https://www.regexplanet.com/advanced/perl/) yours before committing to verify it will match your files.
1111

12-
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude README.md (on whichever branch you're using).
12+
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude [README.md](
13+
../tree/HEAD/README.md) (on whichever branch you're using).
1314

1415
* well-formed pattern.
1516

0 commit comments

Comments
 (0)