Skip to content

Commit

Permalink
Separate pipelines for distros (#68)
Browse files Browse the repository at this point in the history
* separate humble and jazzy pipes

* add scheduled runs

* humble branch for scheduled

---------

Co-authored-by: svastits <svastits.aron.gmail.com>
  • Loading branch information
Svastits authored Dec 20, 2024
1 parent c6bbd5b commit c70d11d
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/industrial_ci.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,23 @@
name: ROS-Industrial CI
run-name: ROS-Industrial CI - ${{ github.event_name }}

# This determines when this workflow is run
# on: [push, pull_request] # on all pushes and PRs

# or more fine-grained
on:
# When master or melodic-devel branch is pushed to
push:
branches:
- master
- feature/**
- fix/**
paths-ignore:
- doc/**
- '**.md'
- LICENSE

# When there is a pull request against master
pull_request:
branches:
- master
- feature/**
- fix/**
paths-ignore:
- doc/**
- '**.md'
- LICENSE

schedule:
# Run every Monday at 1PM UTC
- cron: 0 13 * * 1

jobs:
industrial_ci:
Expand Down
54 changes: 54 additions & 0 deletions .github/workflows/industrial_ci_humble.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: ROS-Industrial CI humble
run-name: ROS-Industrial CI - ${{ github.event_name }}

on:
push:
branches:
- humble

pull_request:
branches:
- humble

schedule:
# Run every Monday at 1PM UTC
- cron: 0 13 * * 1
jobs:
industrial_ci:
name: ROS-Industrial CI
strategy:
matrix:
env:
- ROS_REPO: ros
BUILDER: colcon
ROS_DISTRO: humble
env:
CCACHE_DIR: /github/home/.ccache # Directory for ccache (and how we enable ccache in industrial_ci)
EVENT_NAME: ${{ github.event_name }}
BRANCH: ${{ github.event.ref }}
PR_BRANCH: ${{ github.event.pull_request.head.ref }}
PR_BASE: ${{ github.event.pull_request.base.ref }}
PR_NUMBER: ${{ github.event.number }}
ANALYZER_TOKEN: ${{ secrets.ANALYZER_TOKEN }}
DEBUG_BASH: true
runs-on: ubuntu-latest
steps:
- name: Checkout code
if: github.event.schedule != ''
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: humble
- name: Checkout humble branch for scheduled runs
if: github.event.schedule == ''
uses: actions/checkout@v2
with:
fetch-depth: 0
# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: 'kroshu/industrial_ci@master'
env: ${{ matrix.env }}

0 comments on commit c70d11d

Please sign in to comment.