Skip to content

Commit

Permalink
Merge pull request #74 from emproof-com/chore/move-docs-to-doc-branch
Browse files Browse the repository at this point in the history
Change CI to push to cpp-docs branch
  • Loading branch information
stuxnot authored Oct 31, 2024
2 parents ec1f398 + cc8e239 commit 6a937a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: update-docs
name: docs

on:
push:
Expand Down Expand Up @@ -32,12 +32,11 @@ jobs:
CI_COMMIT_AUTHOR: update-docs-ci
# only commit and push changes on the main branch after the mr has been pushed.
if: github.event_name == 'push'
# Force-adds the docs directory, because the docs directory is still in .gitignore
# to discourage changing the docs directory in a commit.
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "[email protected]"
git add -f docs
git checkout cpp-docs
git add doc
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git push
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ PROJECT_NAME = Nyxstone
HTML_OUTPUT = ./docs/
GENERATE_HTML = YES
GENERATE_LATEX = NO
INPUT = src include README.md include/tl
INPUT = src include README.md vendor
USE_MDFILE_AS_MAINPAGE = README.md
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Github Cpp CI Badge](https://github.com/emproof-com/nyxstone/actions/workflows/cpp.yml/badge.svg)](https://github.com/emproof-com/nyxstone/actions/workflows/cpp.yml)
[![crates.io](https://img.shields.io/crates/v/nyxstone.svg)](https://crates.io/crates/nyxstone)
[![PyPI](https://img.shields.io/pypi/v/nyxstone.svg)](https://pypi.org/project/nyxstone)
[![cpp-docs](https://github.com/emproof-com/nyxstone/actions/workflows/doxygen.yml/badge.svg)](https://emproof-com.github.io/nyxstone/)

Nyxstone is a powerful assembly and disassembly library based on LLVM. It doesn’t require patches to the LLVM source tree and links against standard LLVM libraries available in most Linux distributions. Implemented as a C++ library, Nyxstone also offers Rust and Python bindings. It supports all official LLVM architectures and allows to configure architecture-specific target settings.

Expand Down

0 comments on commit 6a937a0

Please sign in to comment.