Skip to content

Commit 4a1c0ab

Browse files
authored
Merge pull request #329 from LLNL/bugfix/rtd-build-failure
RTD build fix.
2 parents ecc3060 + 919ec6b commit 4a1c0ab

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

.gitlab/machines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- batch
2828
variables:
2929
SCHEDULER_ACTION: allocate
30-
SCHEDULER_PARAMETERS: "--res=ci --exclusive -N 2 -t 120"
30+
SCHEDULER_PARAMETERS: "--reservation=ci --exclusive -N 2 -t 120"
3131
NPROC: 112
3232
HOSTNAME: 'ruby'
3333
timeout: 120 minutes

docs/CMakeLists.txt

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,11 @@ if(ENABLE_DOCS)
99
# HTML output directory
1010
set(SPHINX_HTML_DIR "${CMAKE_CURRENT_BINARY_DIR}/html")
1111

12-
configure_file(
13-
"${CMAKE_CURRENT_SOURCE_DIR}/conf.py.in"
14-
"${BINARY_BUILD_DIR}/conf.py"
15-
@ONLY)
16-
1712
get_target_property(DOCS_ACTIVATE_VENV_CMD python_build_env ACTIVATE_VENV)
1813

1914
add_custom_target(docs ALL
2015
COMMAND ${DOCS_ACTIVATE_VENV_CMD} && python -m sphinx -q -b html
21-
-c "${BINARY_BUILD_DIR}"
16+
-c "${CMAKE_CURRENT_SOURCE_DIR}"
2217
"${CMAKE_CURRENT_SOURCE_DIR}"
2318
"${SPHINX_HTML_DIR}"
2419
DEPENDS ${DOC_DEPENDS} python_build_env

docs/conf.py.in docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
# Add any paths that contain custom static files (such as style sheets) here,
9393
# relative to this directory. They are copied after the builtin static files,
9494
# so a file named "default.css" will overwrite the builtin "default.css".
95-
html_static_path = ['@SPHINX_THEME_DIR@'] # ['_static']
95+
html_static_path = [''] # ['_static']
9696

9797
# Custom sidebar templates, must be a dictionary that maps document names
9898
# to template names.

scripts/spheral_ats.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def main():
9999
toss_machine_names = ["rzgenie", "rzwhippet", "rzhound", "ruby"] # Machines using Slurm scheduler
100100
toss_cray_machine_names = ["rzadams", "rzvernal", "tioga"] # Machines using Flux scheduler
101101
np_max_dict = {"rzadams": 84, "rzvernal": 64, "tioga": 64} # Maximum number of processors for ATS to use per node
102-
ci_launch_flags = {"ruby": "--res=ci", "rzadams": "-q pdebug"}
102+
ci_launch_flags = {"ruby": "--reservation=ci", "rzadams": "-q pdebug"}
103103
temp_uname = os.uname()
104104
hostname = temp_uname[1].rstrip("0123456789")
105105
sys_type = os.getenv("SYS_TYPE")

0 commit comments

Comments
 (0)