-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: handle Doxygen bundles for Zoomin
Doxygen content needs to be served now that breathe has gone from Zephyr. Signed-off-by: Gerard Marull-Paretas <[email protected]>
- Loading branch information
1 parent
37ae534
commit 9d2c0f9
Showing
4 changed files
with
77 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
mkdir -p ~/.ssh && \ | ||
ssh-keyscan -p 2222 transfer.nordicsemi.no >> ~/.ssh/known_hosts | ||
# upload files | ||
for file in docs/*.zip docs/monitor*.txt; do | ||
for file in docs/*legacy.zip docs/monitor*.txt; do | ||
echo "put ${file}" | \ | ||
sshpass -e sftp -P 2222 -o BatchMode=no -b - [email protected] | ||
done | ||
|
@@ -53,7 +53,17 @@ jobs: | |
chmod 600 zoomin_key | ||
# upload files | ||
for file in docs/*.zip; do | ||
for file in docs/*zoomin_doxygen*.zip; do | ||
sftp -v -i zoomin_key [email protected] <<EOF | ||
cd docs-be.nordicsemi.com/doxygen/incoming | ||
put ${file} | ||
cd ../../../nordic-be-dev.zoominsoftware.io/doxygen/incoming | ||
put ${file} | ||
quit | ||
EOF | ||
done | ||
for file in docs/*zoomin_sphinx*.zip; do | ||
sftp -v -i zoomin_key [email protected] <<EOF | ||
cd docs-be.nordicsemi.com/sphinx-html/incoming | ||
put ${file} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
manual.name=zephyr-apis-__VERSION__ | ||
booktitle=Zephyr APIs - __VERSION__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Document tags for Zoomin. | ||
|
||
# Tags for all topics: | ||
mapping_global: | ||
- zephyr-apis | ||
- zephyr-apis-__VERSION__ | ||
|
||
# Tags for individual topics: | ||
mapping_topics: [] |