File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change 6868 run : |
6969 sphinx-apidoc -f -e -o docs/ src/haddock -d 1
7070 sphinx-build docs haddock3-docs
71-
72- dev :
73- runs-on : ubuntu-latest
74- permissions :
75- contents : read
76- actions : read
77- checks : write
78-
79- steps :
80- - uses : actions/checkout@v4
81-
82- - uses : actions/setup-python@v5
83- with :
84- python-version : " 3.14"
85-
86- - name : install system dependencies
87- run : |
88- sudo apt-get update
89- sudo apt-get install -y openmpi-bin libopenmpi3 libopenmpi-dev
90-
91- - name : install haddock3 in editable mode
92- run : pip install -e '.[mpi,dev,docs,notebooks]'
93-
94- - name : check installed binaries
95- run : |
96- required_bins="contact_fcc cns haddock-restraints fast-rmsdmatrix"
97- for bin in $required_bins; do
98- if [ ! -x "src/haddock/bin/$bin" ]; then
99- echo "src/haddock/bin/$bin is missing or not executable"; exit 1;
100- fi
101- done
102- ls -l src/haddock/bin
You can’t perform that action at this time.
0 commit comments