-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate 24.04 source build from docker build
- Loading branch information
Showing
3 changed files
with
24 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ on: | |
jobs: | ||
ubuntu2204docker: | ||
runs-on: ubuntu-22.04 | ||
# env: | ||
steps: | ||
- name: git clone [email protected]:lucasw/ros_from_src | ||
uses: actions/checkout@v2 | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Ubuntu 24.04 Noetic ROS build from source in docker | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ubuntu2404docker: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: git clone [email protected]:lucasw/ros_from_src | ||
uses: actions/checkout@v4 | ||
with: | ||
path: ros_from_src | ||
submodules: recursive | ||
|
||
- 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 |