6c28ab176f
* Fix typo in copyright
* Minor README improvements
- Prevent underscores from being interpreted as italics in test name format.
- Switch URL to HTTPS.
* Update docs scripts config
- Allow run_doc.sh and run_doxygen.sh to be called from any directory.
* Add docs build to Jenkins
[ROCm/rccl commit: 8aea5edb29]
16 lines
255 B
Bash
Executable File
16 lines
255 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2019-2021 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
set -eu
|
|
|
|
# Make this directory the PWD
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# Build doxygen info
|
|
./run_doxygen.sh
|
|
|
|
# Build sphinx docs
|
|
cd source
|
|
make clean
|
|
make html
|