We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7d4532 commit 657fa4eCopy full SHA for 657fa4e
.github/workflows/workspace_integration_test.yaml
@@ -77,6 +77,10 @@ jobs:
77
</Domain>
78
</CycloneDDS>
79
EOF
80
+ - name: Install dependencies
81
+ run: |
82
+ sudo apt-get update
83
+ sudo apt-get install -y xvfb libgl1-mesa-glx libglu1-mesa x11-utils
84
- name: Install colcon mixins
85
run: |
86
colcon mixin add default https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml
@@ -111,6 +115,9 @@ jobs:
111
115
# Create virtual framebuffer to allow GLFW to render in MuJoCo tests
112
116
unset MUJOCO_GL
113
117
Xvfb :99 -screen 0 1024x768x24 &
118
+ export DISPLAY=:99
119
+ sleep 3
120
+ xdpyinfo
114
121
echo "Running colcon test"
122
colcon test --retest-until-pass 3 ${{ inputs.colcon_test_args }}
123
- if: always()
0 commit comments