27 lines
		
	
	
		
			650 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			650 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -e
 | |
| #
 | |
| # Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
 | |
| # Spack Project Developers. See the top-level COPYRIGHT file for details.
 | |
| #
 | |
| # SPDX-License-Identifier: (Apache-2.0 OR MIT)
 | |
| 
 | |
| #
 | |
| # Description:
 | |
| #     Builds Spack documentation and checks for
 | |
| #     possible syntax errors. Treats warnings as
 | |
| #     fatal errors.
 | |
| #
 | |
| # Usage:
 | |
| #     run-doc-tests
 | |
| #
 | |
| . "$(dirname $0)/setup.sh"
 | |
| check_dependencies sphinx-apidoc sphinx-build dot git hg svn
 | |
| 
 | |
| # Move to documentation directory
 | |
| # Allows script to be run from anywhere
 | |
| cd "$SPACK_ROOT/lib/spack/docs"
 | |
| 
 | |
| # Treat warnings as fatal errors
 | |
| make clean --silent
 | |
| make SPHINXOPTS=-W
 | 
