Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Maint/add git action pipelines #31

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eca_a9.rosinstall
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- git:
uri: https://github.com/uuvsimulator/uuv_simulator.git
local-name: uuv_simulator
9 changes: 9 additions & 0 deletions .github/issue-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
branches:
- label: enhancement
prefix: feature/
- label: bug
prefix: bugfix/
- label: documentation
prefix: docs/
- label: maintenance
prefix: maint/
14 changes: 14 additions & 0 deletions .github/workflows/create_issue_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on:
issues:
types: [assigned]
issue_comment:
types: [created]

jobs:
create_issue_branch_job:
runs-on: ubuntu-latest
steps:
- name: create issue branch
uses: robvanderleek/create-issue-branch@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31 changes: 31 additions & 0 deletions .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)

name: build

on: [push, pull_request] # on all pushes and PRs

jobs:
industrial_ci:
strategy:
matrix:
env:
- {ROS_DISTRO: kinetic, ROS_REPO: main, CATKIN_LINT: true}
- {ROS_DISTRO: kinetic, ROS_REPO: main, PRERELEASE: true}
- {ROS_DISTRO: kinetic, ROS_REPO: main, UPSTREAM_WORKSPACE: .eca_a9.rosinstall}
- {ROS_DISTRO: melodic, ROS_REPO: main, CATKIN_LINT: true}
- {ROS_DISTRO: melodic, ROS_REPO: main, PRERELEASE: true}
- {ROS_DISTRO: melodic, ROS_REPO: main, UPSTREAM_WORKSPACE: .eca_a9.rosinstall}
env:
CCACHE_DIR: /github/home/.ccache # Directory for ccache (and how we enable ccache in industrial_ci)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v2
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: 'ros-industrial/industrial_ci@master'
env: ${{ matrix.env }}
38 changes: 0 additions & 38 deletions .travis.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .uuv_ci_config/install_gazebo9.sh

This file was deleted.

17 changes: 0 additions & 17 deletions .uuv_ci_config/ros_kinetic.sh

This file was deleted.

17 changes: 0 additions & 17 deletions .uuv_ci_config/ros_lunar.sh

This file was deleted.

18 changes: 0 additions & 18 deletions .uuv_ci_config/ros_melodic.sh

This file was deleted.

21 changes: 0 additions & 21 deletions .uuv_ci_config/run_tests.sh

This file was deleted.

20 changes: 0 additions & 20 deletions .uuv_ci_config/uuv_dependencies.sh

This file was deleted.