forked from HDFGroup/hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into locking_protocol
- Loading branch information
Showing
20 changed files
with
988 additions
and
403 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: linkchecker | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: get | ||
uses: actions/checkout@v4 | ||
|
||
- name: install | ||
run: | | ||
sudo apt update -y | ||
sudo apt install -y libunwind-dev | ||
sudo apt install -y graphviz | ||
sudo apt install -y --no-install-recommends doxygen | ||
sudo apt install -y cmake | ||
sudo apt install -y texlive-full | ||
sudo apt install -y texlive-fonts-extra | ||
sudo apt install -y texlive-latex-extra | ||
pip3 install linkchecker | ||
- name: build | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -DHDF5_BUILD_DOC:BOOL=ON .. | ||
make doxygen | ||
- name: check | ||
run: | | ||
cd build/hdf5lib_docs/html | ||
linkchecker --check-extern ./index.html | ||
continue-on-error: true | ||
|
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
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
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
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 |
---|---|---|
|
@@ -191,7 +191,8 @@ are for connector testing and should not be found in the wild. Values of 512 to | |
connectors. | ||
|
||
As is the case with HDF5 filters, The HDF Group can assign you an official VOL connector value. Please | ||
contact <a href="[email protected]">[email protected]</a> for help with this. We currently do not register connector names, though the | ||
contact <a href="mailto:[email protected]">[email protected]</a> for help with this. We currently do not | ||
register connector names, though the | ||
name you've chosen will appear on the registered VOL connectors page. | ||
|
||
As noted above, registered VOL connectors will be listed at: | ||
|
Oops, something went wrong.