Skip to content

Commit

Permalink
[#382] Updates to gitignore. Push Documentation build into docker con…
Browse files Browse the repository at this point in the history
…tainer.
  • Loading branch information
rjbrown2 committed Jan 10, 2025
1 parent d6d066a commit 6a4248f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ test/cmake_install.cmake
test/CTestTestfile.cmake
test/CMakeFiles/*
Testing/Temporary/*
docs/wiki/_build
docs/wiki/_templates

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ debug:
./support/scripts/docker_debug.sh

docs:
./support/scripts/build_docs.sh
./support/scripts/documentation_build.sh

internal:
./support/scripts/internal_docker_build.sh
Expand Down
14 changes: 14 additions & 0 deletions support/scripts/documentation_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash -i
#
# Convenience script for CryptoLib development
#
# ./documentation_build.sh
#

SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
source $SCRIPT_DIR/env.sh

echo "Building Sphinx Documentation..."
$DFLAGS -v $BASE_DIR:$BASE_DIR -w $BASE_DIR/docs/wiki $DBOX bash -c \
"../../support/scripts/build_docs.sh"
echo ""

0 comments on commit 6a4248f

Please sign in to comment.