Skip to content

Commit

Permalink
Switch CI to noetic (#60)
Browse files Browse the repository at this point in the history
* Switch CI to noetic

* next try debian frontend

* next try debian frontend
  • Loading branch information
hofbi authored Dec 7, 2023
1 parent 684eb1e commit d804c15
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@ jobs:
strategy:
matrix:
include:
- ros_distro: melodic
python_suffix: ""
# - ros_distro: noetic
# python_suffix: 3
- ros_distro: noetic
python_suffix: 3
container:
image: ros:${{ matrix.ros_distro }}-robot
env:
Expand Down
8 changes: 4 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ WS_SRC="${SCRIPT_DIR}"/..
pushd "$WS_SRC" || exit

echo "Installing General Packages"
sudo apt-get update
sudo apt-get install -y \
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
git \
software-properties-common \
apt-utils \
python3-pip

if [ -z "$PYTHON_SUFFIX" ]; then
sudo apt-get install -y \
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
python-pip \
python-protobuf
fi

echo "Installing Carla Ros Bridge"
sudo apt-get install -y \
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
ros-$ROS_VERSION-opencv-apps \
ros-$ROS_VERSION-ackermann-msgs \
ros-$ROS_VERSION-derived-object-msgs \
Expand Down

0 comments on commit d804c15

Please sign in to comment.