-
Notifications
You must be signed in to change notification settings - Fork 769
[CI] Remove Doxygen docs from intel.github.io/llvm-docs/ #15482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f1141ed
7a3e122
1997a3b
80c6576
fdbcdd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Generate Doxygen documentation | ||
name: Generate documentation | ||
|
||
on: | ||
schedule: | ||
|
@@ -25,16 +25,14 @@ jobs: | |
path: repo | ||
- name: Install deps | ||
run: | | ||
sudo apt-get install -y doxygen graphviz ssh ninja-build libhwloc-dev | ||
sudo apt-get install -y graphviz ssh ninja-build libhwloc-dev | ||
sudo pip3 install -r repo/llvm/docs/requirements.txt | ||
- name: Build Docs | ||
run: | | ||
mkdir -p $GITHUB_WORKSPACE/build | ||
cd $GITHUB_WORKSPACE/build | ||
python $GITHUB_WORKSPACE/repo/buildbot/configure.py -w $GITHUB_WORKSPACE \ | ||
-s $GITHUB_WORKSPACE/repo -o $GITHUB_WORKSPACE/build -t Release --docs | ||
cmake --build . --target doxygen-sycl | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Potentially it can be useful to verify that developers can build Doxygen documentation locally if needed. Currently, we build Doxygen documentation during pre-commit testing w/o deploying the documentation. I don't have a strong opinion about keeping Doxygen documentation buildable. IMHO, even if broken, it should be easy to fix. |
||
cmake --build . --target doxygen-clang | ||
cmake --build . --target docs-sycl-html | ||
cmake --build . --target docs-clang-html | ||
- name: Deploy | ||
|
@@ -52,9 +50,7 @@ jobs: | |
git rm -rf . | ||
touch .nojekyll | ||
yes | \cp -rf $GITHUB_WORKSPACE/build/tools/sycl/doc/html/* . | ||
mv $GITHUB_WORKSPACE/build/tools/sycl/doc/doxygen/html doxygen/ | ||
mv $GITHUB_WORKSPACE/build/tools/clang/docs/html clang/ | ||
mv $GITHUB_WORKSPACE/build/tools/clang/docs/doxygen/html clang_doxygen/ | ||
git config --global user.name "iclsrc" | ||
git config --global user.email "[email protected]" | ||
git add . | ||
|
Uh oh!
There was an error while loading. Please reload this page.