Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
9925589e
Commit
9925589e
authored
Apr 16, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add steps for Doxygen to the release script
parent
920f9bdb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
4 deletions
+33
-4
.gitignore
.gitignore
+2
-4
scripts/make_release.bash
scripts/make_release.bash
+31
-0
No files found.
.gitignore
View file @
9925589e
.make-release-steps.bash
Doxyfile
.push-doxygen-steps.bash
Makefile
bin/*
blog_release_note.md
build/*
github_release_note.md
doxygen-log.txt
html/*
manual/examples
manual/html/*
...
...
@@ -12,4 +11,3 @@ manual/libcaf_core
manual/libcaf_io
manual/libcaf_net
manual/libcaf_openssl
release.txt
scripts/make_release.bash
View file @
9925589e
...
...
@@ -235,3 +235,34 @@ rm "$github_msg" .make-release-steps.bash
echo
;
echo
echo
">>> done"
echo
;
echo
echo
">>> build and publish Doxygen on the homepage (needs a checkout under ../website)?"
ask_permission
"type [y] to proceed or [n] to abort"
if
[
!
-d
../website/static/doxygen
]
;
then
raise_error
"../website/static/doxygen does not exist"
fi
if
[
-d
../website/static/doxygen/
$tag_version
]
;
then
raise_error
"../website/static/doxygen/
$tag_version
/ already exist"
fi
echo
"
\
doxygen &> doxygen-log.txt
mkdir ../website/static/doxygen/
$tag_version
cp -R html/* ../website/static/doxygen/
$tag_version
/
cd ../website
git add static/doxygen/
$tag_version
git commit -m 'Add Doxygen for
$tag_version
'
git push
"
>>
.push-doxygen-steps.bash
echo
;
echo
echo
">>> please review the final steps for pushing Doxygen for
$tag_version
"
cat
.push-doxygen-steps.bash
echo
;
echo
ask_permission
"type [y] to execute the steps above or [n] to abort"
chmod
+x .push-doxygen-steps.bash
./.push-doxygen-steps.bash
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment