-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split up ubuntu 20.04 source build and docker build actions
- Loading branch information
Showing
2 changed files
with
23 additions
and
5 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
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 20.04 Noetic ROS build from source | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ubuntu2004: | ||
runs-on: ubuntu-20.04 | ||
# env: | ||
steps: | ||
- name: git clone [email protected]:lucasw/ros_from_src | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ros_from_src | ||
submodules: recursive | ||
|
||
# TODO(lucasw) probably could combine 20.04, 22.04, and 24.04 docker builds into a single action yaml | ||
# with matrix branches that execute simultaneously | ||
- name: docker build from source 20.04 | ||
run: | | ||
cd ros_from_src | ||
docker build --build-arg IMAGE=ubuntu:20.04 --build-arg SUBDIR=ubuntu_2004 . -t ros2004 |