Skip to content

Commit 7dedf98

Browse files
author
Ryohei Sasaki
authored
Merge pull request #95 from MapIV/develop
Develop
2 parents bd31054 + 4962182 commit 7dedf98

9 files changed

Lines changed: 193 additions & 294 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 101 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: build
2+
on: pull_request
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-18.04
7+
8+
container: ros:melodic
9+
services:
10+
ros:
11+
image: ros
12+
13+
defaults:
14+
run:
15+
shell: bash
16+
17+
steps:
18+
- name: checkout
19+
uses: actions/checkout@v2
20+
21+
- name: rosdep update
22+
run: |
23+
apt-get update
24+
rosdep update
25+
26+
- name: Create Workspace
27+
run: |
28+
mkdir -p ~/eagleye/src/
29+
cp -r `pwd` ~/eagleye/src/
30+
31+
- name: Clone rtklib_msgs
32+
run: |
33+
cd ~/eagleye/src/
34+
git clone https://github.com/MapIV/rtklib_ros_bridge.git
35+
36+
- name: Build
37+
run: |
38+
cd ~/eagleye/
39+
source /opt/ros/melodic/setup.bash
40+
rosdep install --from-paths src --ignore-src -r -y
41+
catkin_make -DCMAKE_BUILD_TYPE=Release -j1

0 commit comments

Comments
 (0)