Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5fbc40

Browse files
author
Davide Faconti
committed
move to github actions
1 parent 98b41b9 commit a5fbc40

File tree

3 files changed

+35
-34
lines changed

3 files changed

+35
-34
lines changed

.github/workflows/ros1.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ros1
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
industrial_ci:
7+
strategy:
8+
matrix:
9+
env:
10+
- {ROS_DISTRO: melodic, ROS_REPO: main}
11+
- {ROS_DISTRO: kinetic, ROS_REPO: main}
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1
15+
- uses: 'ros-industrial/industrial_ci@master'
16+
env: ${{matrix.env}}
17+
with:
18+
package-name: behaviortree_cpp_v3

.github/workflows/ros2.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: ros2
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
industrial_ci:
7+
strategy:
8+
matrix:
9+
env:
10+
- {ROS_DISTRO: eloquent, ROS_REPO: main}
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: 'ros-industrial/industrial_ci@master'
15+
env: ${{matrix.env}}
16+
with:
17+
package-name: behaviortree_cpp_v3

.travis.yml

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -39,40 +39,6 @@ matrix:
3939
include:
4040
- bare_linux:
4141
env: ROS_DISTRO="none"
42-
- ros_indigo:
43-
env: ROS_DISTRO="kinetic"
44-
- ros_kinetic:
45-
env: ROS_DISTRO="lunar"
46-
- ros_melodic:
47-
env: ROS_DISTRO="melodic"
48-
# - <<: *conan-linux
49-
# env: CONAN_GCC_VERSIONS=5 CONAN_DOCKER_IMAGE=conanio/gcc5 ROS_DISTRO="none"
50-
# - <<: *conan-linux
51-
# env: CONAN_GCC_VERSIONS=6 CONAN_DOCKER_IMAGE=conanio/gcc6 ROS_DISTRO="none"
52-
# - <<: *conan-linux
53-
# env: CONAN_GCC_VERSIONS=7 CONAN_DOCKER_IMAGE=conanio/gcc7 ROS_DISTRO="none"
54-
# - <<: *conan-linux
55-
# env: CONAN_GCC_VERSIONS=8 CONAN_DOCKER_IMAGE=conanio/gcc8 ROS_DISTRO="none"
56-
# - <<: *conan-linux
57-
# env: CONAN_CLANG_VERSIONS=3.9 CONAN_DOCKER_IMAGE=conanio/clang39 ROS_DISTRO="none"
58-
# - <<: *conan-linux
59-
# env: CONAN_CLANG_VERSIONS=4.0 CONAN_DOCKER_IMAGE=conanio/clang40 ROS_DISTRO="none"
60-
# - <<: *conan-linux
61-
# env: CONAN_CLANG_VERSIONS=5.0 CONAN_DOCKER_IMAGE=conanio/clang50 ROS_DISTRO="none"
62-
# - <<: *conan-linux
63-
# env: CONAN_CLANG_VERSIONS=6.0 CONAN_DOCKER_IMAGE=conanio/clang60 ROS_DISTRO="none"
64-
# - <<: *conan-osx
65-
# osx_image: xcode8.3
66-
# env: CONAN_APPLE_CLANG_VERSIONS=8.1 ROS_DISTRO="none"
67-
# - <<: *conan-osx
68-
# osx_image: xcode9
69-
# env: CONAN_APPLE_CLANG_VERSIONS=9.0 ROS_DISTRO="none"
70-
# - <<: *conan-osx
71-
# osx_image: xcode9.4
72-
# env: CONAN_APPLE_CLANG_VERSIONS=9.1 ROS_DISTRO="none"
73-
# - <<: *conan-osx
74-
# osx_image: xcode10.1
75-
# env: CONAN_APPLE_CLANG_VERSIONS=10.0 ROS_DISTRO="none"
7642
fast_finish: false
7743

7844
before_install:

0 commit comments

Comments
 (0)