Skip to content

Commit 446dd26

Browse files
authored
[CI] Fix tutos (2) (#1109)
1 parent 50f0db0 commit 446dd26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/unittest/linux_olddeps/scripts_gym_0_13/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ unset PYTORCH_VERSION
44
# For unittest, nightly PyTorch is used as the following section,
55
# so no need to set PYTORCH_VERSION.
66
# 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
88

99
set -e
1010

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ jobs:
7272
id: build_doc
7373
run: |
7474
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
7677
cd ..
7778
- name: Install rsync 📚
7879
run: |

tutorials/sphinx-tutorials/run_local.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ with open('$file') as f:
1818
code = compile(source, '$file', 'exec')
1919
2020
exec(code)
21-
2221
"""
2322
done

0 commit comments

Comments
 (0)