Skip to content

Commit

Permalink
do a local build in 24.04 as well as 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasw committed Jul 19, 2024
1 parent 2d14520 commit 6b5e043
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ubuntu_20_04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
cd staging
underlay_ws/build.sh
- name: local catkin build
run: |
cd staging
underlay_ws/catkin.sh
- name: docker build from source 20.04
run: |
cd ros_from_src
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/ubuntu_24_04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,32 @@ jobs:
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
pip install vcstool
- 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
Expand Down

0 comments on commit 6b5e043

Please sign in to comment.