Skip to content

Commit

Permalink
Merge pull request #780 from k-okada/fix_indigo_ci
Browse files Browse the repository at this point in the history
use actions/checkout@v3.0.2 and skip X server on 14.04
  • Loading branch information
k-okada committed Jan 25, 2023
2 parents 67e83ca + b85fe63 commit 62e4699
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/config.yml
Expand Up @@ -49,10 +49,11 @@ jobs:
fi
- name: Chcekout
uses: actions/checkout@v2
uses: actions/checkout@v3.0.2

- name: Start X server
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 @@ -61,6 +62,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: Run jsk_travis
uses: jsk-ros-pkg/jsk_travis@master
Expand Down

0 comments on commit 62e4699

Please sign in to comment.