use 24.04 dependencies and repos in 22.04 build #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu 24.04 Noetic ROS build from source in docker | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
ubuntu2404dockeron2204: | |
runs-on: ubuntu-24.04 | |
# env: | |
steps: | |
- name: git clone [email protected]:lucasw/ros_from_src | |
uses: actions/checkout@v4 | |
with: | |
path: ros_from_src | |
submodules: recursive | |
- name: local apt dependencies | |
run: | | |
mkdir staging | |
cd staging | |
mkdir -p underlay_ws/src | |
cp ../ros_from_src/*sh underlay_ws | |
sudo underlay_ws/dependencies.sh | |
- name: local git dependencies | |
run: | | |
cd staging | |
cp ../ros_from_src/*yaml underlay_ws/src | |
# override rosconsole in 20.04 for log4cxx compatibility | |
ROSCONSOLE=https://github.com/ros/rosconsole underlay_ws/git_clone.sh | |
- name: local build | |
run: | | |
cd staging | |
underlay_ws/build.sh | |
- name: local catkin build | |
run: | | |
cd staging | |
underlay_ws/catkin.sh | |
- name: docker build from source 24.04 | |
run: | | |
cd ros_from_src | |
docker build --build-arg IMAGE=ubuntu:24.04 --build-arg SUBDIR=ubuntu_2404 . -t ros2404 | |
# TODO(lucasw) ubuntu_2404/Dockerfile doesn't work, was depending on the now-removed | |
# apt debian science ros packages |