Skip to content

Commit

Permalink
Merge pull request #726 from k-okada/fix_ga
Browse files Browse the repository at this point in the history
.github/workflows/config.yml: use checkout v3.0.2 and skip X for 14.04
  • Loading branch information
k-okada committed Nov 1, 2022
2 parents 4d45a0d + 66af97e commit 3cff147
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,14 @@ jobs:
git config --global --add safe.directory $GITHUB_WORKSPACE
fi
- name: Chcekout
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3.0.2

- name: Start X server
if: ${{ matrix.ROS_DISTRO == 'kinetic' && matrix.TEST_PKGS == 'pr2eus pr2eus_moveit' }}

run: |
if [[ "${{ matrix.CONTAINER }}" =~ "jskrobotics/ros-ubuntu:14.04" ]]; then exit 0; fi
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections || echo "failing on ros-ubuntu is OK" # set non interactive tzdata https://stackoverflow.com/questions/8671308/non-interactive-method-for-dpkg-reconfigure-tzdata
sudo apt-get -y -qq install mesa-utils x11-xserver-utils xserver-xorg-video-dummy wget
export DISPLAY=:0
Expand All @@ -140,6 +141,7 @@ jobs:
sleep 3 # wait x server up
export QT_X11_NO_MITSHM=1 # http://wiki.ros.org/docker/Tutorials/GUI
xhost +local:root
shell: bash

- name: Fix geneus source tree
run: |
Expand Down

0 comments on commit 3cff147

Please sign in to comment.