Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Update ros2 to humble in build test workflow #3

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,31 @@ on:
jobs:
build:
name: build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 120
strategy:
fail-fast: false
env:
ROS_DISTRO: foxy
ROS_DISTRO: humble
container:
image: rostooling/setup-ros-docker:ubuntu-focal-ros-foxy-ros-base-latest
image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-ros-base-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install dependencies of choreonoid
run: |
apt-get update && \
apt-get -y upgrade && \
apt-get -y install \
build-essential \
cmake-curses-gui \
libboost-dev \
libboost-system-dev \
libboost-program-options-dev \
libboost-iostreams-dev \
libboost-filesystem-dev \
libeigen3-dev \
uuid-dev \
libxfixes-dev \
Expand All @@ -40,7 +41,8 @@ jobs:
zlib1g-dev \
libjpeg-dev \
libpng-dev \
qt5-default \
libfreetype-dev \
qtbase5-dev \
libqt5x11extras5-dev \
libqt5svg5-dev \
qttranslations5-l10n \
Expand Down
Loading