Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
61a924d2
Unverified
Commit
61a924d2
authored
Dec 03, 2023
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
attempt to build documentation in github
parent
2692f2c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
0 deletions
+69
-0
.github/workflows/build-documentation.yml
+65
-0
README.md
+4
-0
No files found.
.github/workflows/build-documentation.yml
0 → 100644
View file @
61a924d2
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name
:
publish docs
on
:
push
:
branches
:
[
"
trunk"
]
permissions
:
contents
:
read
pages
:
write
id-token
:
write
concurrency
:
group
:
"
pages"
cancel-in-progress
:
false
jobs
:
docs
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id
:
strings
shell
:
bash
run
:
|
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
-
name
:
Install dependencies Ubuntu
run
:
sudo apt-get update && sudo apt-get install cmake doxygen
-
uses
:
actions/setup-python@v4
with
:
python-version
:
'
3.9'
cache
:
'
pip'
# caching pip dependencies
-
run
:
pip install -r docs/requirements.txt
-
name
:
Configure CMake
run
:
cmake -S . -B ${{ steps.strings.outputs.build-output-dir }} -DBUILD_DOCUMENTATION=ON -DBUILD_TESTING=OFF
-
name
:
Run Sphinx
run
:
|
cmake --build ${{ steps.strings.outputs.build-output-dir }} --target Sphinx-libmcfp
ls -l ${{ steps.strings.outputs.build-output-dir }}
ls -l ${{ steps.strings.outputs.build-output-dir }}/docs/sphinx
-
name
:
Upload artifact
uses
:
actions/upload-pages-artifact@v2
with
:
path
:
${{ steps.strings.outputs.build-output-dir }}/docs/sphinx
deploy
:
environment
:
name
:
github-pages
url
:
${{ steps.deployment.outputs.page_url }}
runs-on
:
ubuntu-latest
needs
:
docs
steps
:
-
name
:
Deploy to GitHub Pages
id
:
deployment
uses
:
actions/deploy-pages@v2
README.md
View file @
61a924d2
[

](https://github.com/pdb-redo/libcifpp/actions)
[

](https://github.com/pdb-redo/libcifpp/LICENSE)
# libcifpp
# libcifpp
This library contains code to work with mmCIF and legacy PDB files.
This library contains code to work with mmCIF and legacy PDB files.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment