diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-10-27 19:02:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 19:02:52 +0200 |
commit | 3d5444fdd80f39b86a031d50dd8f120e6ac49a54 (patch) | |
tree | 8030f45a5b30857ec487c24a8ff7857df4027aff /share | |
parent | 80d4a836363daf8137d4e65867e0d27436e01ea4 (diff) | |
download | spack-3d5444fdd80f39b86a031d50dd8f120e6ac49a54.tar.gz spack-3d5444fdd80f39b86a031d50dd8f120e6ac49a54.tar.bz2 spack-3d5444fdd80f39b86a031d50dd8f120e6ac49a54.tar.xz spack-3d5444fdd80f39b86a031d50dd8f120e6ac49a54.zip |
Remove documentation tests from GitHub Actions (#26981)
We moved documentation tests to readthedocs since a while,
so remove the one on GitHub.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-doc-tests | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/share/spack/qa/run-doc-tests b/share/spack/qa/run-doc-tests deleted file mode 100755 index 61d18288d0..0000000000 --- a/share/spack/qa/run-doc-tests +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -e -# -# Copyright 2013-2021 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 |