TL/MLX5: re-disable a2a until segfault is fixed #33
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
name: Docs | |
on: [push, pull_request] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y --no-install-recommends doxygen doxygen-latex | |
- uses: actions/checkout@v1 | |
- name: Build UCC docs | |
run: | | |
./autogen.sh | |
./configure --with-docs-only | |
make docs | |
- name: Upload docs | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Docs | |
path: ${{ github.workspace }}/docs/doxygen-doc/ucc.pdf | |
retention-days: 7 |