Skip to content

Commit

Permalink
Merge pull request #2215 from bitshares/update-doxyfile
Browse files Browse the repository at this point in the history
Exclude fc/tests from Doxygen docs
  • Loading branch information
abitmore authored Jul 2, 2020
2 parents 440586e + 793ab9d commit db03add
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
ccache \
parallel \
Expand Down Expand Up @@ -91,6 +92,8 @@ jobs:
steps:
- name: Install dependencies
run: |
df -h
sudo apt-get update
sudo apt-get install -y \
ccache \
parallel \
Expand All @@ -109,6 +112,8 @@ jobs:
sudo apt-get auto-remove -y
sudo apt-get clean -y
df -h
sudo du -hs /mnt/*
sudo ls -alr /mnt/
- uses: actions/checkout@v2
with:
submodules: recursive
Expand All @@ -117,14 +122,14 @@ jobs:
pwd
df -h .
mkdir -p _build
sudo mkdir -p /mnt/_build/libraries /mnt/_build/programs /_build/tests
sudo chmod a+rwx /mnt/_build/libraries /mnt/_build/programs /_build/tests
ln -s /mnt/_build/libraries _build/libraries
ln -s /mnt/_build/programs _build/programs
ln -s /_build/tests _build/tests
sudo ln -s /mnt/_build/libraries /_build/libraries
sudo ln -s /mnt/_build/programs /_build/programs
sudo ln -s /_build/tests /mnt/_build/tests
sudo mkdir -p /_build/libraries /_build/programs /mnt/_build/tests
sudo chmod a+rwx /_build/libraries /_build/programs /mnt/_build/tests
ln -s /_build/libraries _build/libraries
ln -s /_build/programs _build/programs
ln -s /mnt/_build/tests _build/tests
sudo ln -s /_build/libraries /mnt/_build/libraries
sudo ln -s /_build/programs /mnt/_build/programs
sudo ln -s /mnt/_build/tests /_build/tests
ls -al _build
pushd _build
export -n BOOST_ROOT BOOST_INCLUDEDIR BOOST_LIBRARYDIR
Expand Down Expand Up @@ -182,6 +187,7 @@ jobs:
- name: Install dependencies
if: steps.cache-libs.outputs.cache-hit != 'true'
run: |
sudo apt-get update
sudo apt-get install -y \
g++-mingw-w64-x86-64 \
mingw-w64-tools
Expand Down Expand Up @@ -260,6 +266,7 @@ jobs:
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
ccache \
g++-mingw-w64-x86-64 \
Expand Down
4 changes: 2 additions & 2 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ WARN_LOGFILE =
# spaces.
# Note: If this tag is empty the current directory is searched.

INPUT = README.md doc/main.dox libraries/chain libraries/db libraries/app libraries/wallet libraries/protocol libraries/net libraries/plugins libraries/fc libraries/utilities libraries/egenesis
INPUT = README.md doc/main.dox libraries

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down Expand Up @@ -793,7 +793,7 @@ RECURSIVE = YES
# Note that relative paths are relative to the directory from which doxygen is
# run.

EXCLUDE = libraries/fc/vendor/editline libraries/fc/vendor/secp256k1-zkp libraries/fc/vendor/websocketpp
EXCLUDE = libraries/fc/vendor libraries/fc/tests

# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
Expand Down

0 comments on commit db03add

Please sign in to comment.