Skip to content

Commit

Permalink
ros1 ros2 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farhangnaderi committed Nov 18, 2024
1 parent f0c0694 commit c0e3db7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ros1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libmosquitto-dev libqtav-dev libparquet-dev
git clone https://github.com/abseil/abseil-cpp.git
cd abseil-cpp
mkdir build && cd build
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=/usr/local ..
make -j$(nproc)
sudo make install
- name: Run industrial_ci
uses: ros-industrial/industrial_ci@master
env: ${{ matrix.env }}
with:
package-name: plotjuggler
config: |
- name: plotjuggler
18 changes: 15 additions & 3 deletions .github/workflows/ros2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y pkg-config libmosquitto-dev libqtav-dev libparquet-dev
git clone https://github.com/abseil/abseil-cpp.git
cd abseil-cpp
mkdir build && cd build
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=/usr/local ..
make -j$(nproc)
sudo make install
- name: Run industrial_ci
uses: ros-industrial/industrial_ci@master
env: ${{ matrix.env }}
with:
package-name: plotjuggler
config: |
- name: plotjuggler

0 comments on commit c0e3db7

Please sign in to comment.