File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
.circleci/unittest/linux_olddeps/scripts_gym_0_13
tutorials/sphinx-tutorials Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ unset PYTORCH_VERSION
4
4
# For unittest, nightly PyTorch is used as the following section,
5
5
# so no need to set PYTORCH_VERSION.
6
6
# In fact, keeping PYTORCH_VERSION forces us to hardcode PyTorch version in config.
7
- apt-get update && apt-get install -y git wget gcc g++
7
+ apt-get update && apt-get install -y git wget libglew-dev libx11-dev x11proto-dev g++ gcc
8
8
9
9
set -e
10
10
Original file line number Diff line number Diff line change 72
72
id : build_doc
73
73
run : |
74
74
cd ./docs
75
- timeout 7m bash -ic "MUJOCO_GL=egl sphinx-build ./source _local_build" || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
75
+ #timeout 7m bash -ic "MUJOCO_GL=egl sphinx-build ./source _local_build" || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
76
+ PYOPENGL_PLATFORM=egl MUJOCO_GL=egl sphinx-build ./source _local_build
76
77
cd ..
77
78
- name : Install rsync 📚
78
79
run : |
Original file line number Diff line number Diff line change @@ -18,6 +18,5 @@ with open('$file') as f:
18
18
code = compile(source, '$file ', 'exec')
19
19
20
20
exec(code)
21
-
22
21
" " "
23
22
done
You can’t perform that action at this time.
0 commit comments