Skip to content

Commit

Permalink
catkin
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasw committed Apr 21, 2021
1 parent f9802bc commit 9bbca5a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ubuntu_20_04.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Noetic ROS build from source

on:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-20.04
# env:
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: ros/catkin
ref: noetic-devel
- name: Catkin
run: |
mkdir build/catkin -p
cd build/catkin
cmake ../../catkin -DCATKIN_BUILD_BINARY_PACKAGE=OFF -DCMAKE_INSTALL_PREFIX=/opt/ros/noetic -DPYTHON_EXECUTABLE=/usr/bin/python -DSETUPTOOLS_DEB_LAYOUT=OFF
make
make install
ls -l /opt/ros/noetic

0 comments on commit 9bbca5a

Please sign in to comment.