File: prerelease.yaml

package info (click to toggle)
ros-random-numbers 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: cpp: 103; xml: 16; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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:
    inputs:
      ROS_DISTRO:
        type: string
        required: true
        description: 'ROS distribution codename:'
        default: noetic

jobs:
  default:
    env:
      ROS_DISTRO: ${{ inputs.ROS_DISTRO }}
      PRERELEASE: true
      BASEDIR: ${{ github.workspace }}/.work

    name: "${{ inputs.ROS_DISTRO }}"
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: industrial_ci
        uses: ros-industrial/industrial_ci@master