Skip to content

Commit

Permalink
Add pre-release test to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjw committed Apr 30, 2021
1 parent 94c779e commit c182966
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 29 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# 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: CI

on:
workflow_dispatch:
pull_request:
push:
branches:
- melodic-devel

jobs:
industrial_ci:
strategy:
matrix:
env:
- ROS_DISTRO: melodic
ROS_REPO: main
- ROS_DISTRO: melodic
ROS_REPO: testing
env:
BASEDIR: ${{ github.workspace }}/.work
CCACHE_DIR: ${{ github.workspace }}/.ccache
CACHE_PREFIX: ${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}

name: ${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cache ccache
uses: pat-s/[email protected]
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }}
restore-keys: |
ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}
ccache-${{ env.CACHE_PREFIX }}
- uses: ros-industrial/industrial_ci@master
env: ${{ matrix.env }}
- name: upload test artifacts (on failure)
uses: actions/upload-artifact@v2
if: failure()
with:
name: test-results
path: ${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml
File renamed without changes.
28 changes: 0 additions & 28 deletions .github/workflows/industrial_ci_action.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/prerelease.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 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: pre-release

on:
workflow_dispatch:
push:
branches:
- melodic-devel

jobs:
default:
env:
ROS_DISTRO: melodic
PRERELEASE:
BASEDIR: ${{ github.workspace }}/.work
CCACHE_DIR: ${{ github.workspace }}/.ccache
CACHE_PREFIX: melodic-prerelease

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cache ccache
uses: pat-s/[email protected]
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }}
restore-keys: |
ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}
ccache-${{ env.CACHE_PREFIX }}
- uses: ros-industrial/industrial_ci@master
env: ${{ matrix.env }}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ MoveIt Resources

This repository includes various resources (URDFs, meshes, moveit_config packages) needed for MoveIt! testing.

GitHub Actions: [![Format](https://github.com/ros-planning/moveit_resources/actions/workflows/format.yml/badge.svg?branch=melodic-devel)](https://github.com/ros-planning/moveit_resources/actions/workflows/format.yml?branch=melodic-devel) [![BuildAndTest](https://github.com/ros-planning/moveit_resources/actions/workflows/industrial_ci_action.yml/badge.svg?branch=melodic-devel)](https://github.com/ros-planning/moveit_resources/actions/workflows/industrial_ci_action.yml?branch=melodic-devel)
GitHub Actions:
[![Format](https://github.com/ros-planning/moveit_resources/actions/workflows/format.yaml/badge.svg?branch=melodic-devel)](https://github.https://github.com/ros-planning/moveit_resources/actions/workflows/format.yaml?query=branch%3Amelodic-devel)
[![BuildAndTest](https://github.com/ros-planning/moveit_resources/actions/workflows/ci.yaml/badge.svg?branch=melodic-devel)](https://github.https://github.com/ros-planning/moveit_resources/actions/workflows/ci.yaml?query=branch%3Amelodic-devel)
[![pre-release](https://github.com/ros-planning/moveit_resources/actions/workflows/prerelease.yaml/badge.svg?branch=melodic-devel)](https://github.https://github.com/ros-planning/moveit_resources/actions/workflows/prerelease.yaml?query=branch%3Amelodic-devel)

## Included Robots

Expand Down

0 comments on commit c182966

Please sign in to comment.