Skip to content

Commit

Permalink
Merge branch 'iron' into iron-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjw authored Sep 7, 2023
2 parents 84421ea + 93c48b0 commit 6608798
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 46 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ on:
pull_request:
push:
branches:
- main
- iron

jobs:
default:
strategy:
fail-fast: false
matrix:
env:
- IMAGE: rolling-ci
- IMAGE: iron-ci
CCOV: true
ROS_DISTRO: rolling
- IMAGE: rolling-ci-testing
ROS_DISTRO: rolling
ROS_DISTRO: iron
- IMAGE: iron-ci-testing
ROS_DISTRO: iron
IKFAST_TEST: true
CLANG_TIDY: pedantic
- IMAGE: humble-ci
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
push:
branches:
- main
- iron
pull_request:
paths:
- .docker/**
Expand All @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_DISTRO: [iron]
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_DISTRO: [iron]
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_DISTRO: [iron]
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_DISTRO: [iron]
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:
push:
branches:
- main
- iron

jobs:
pre-commit:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [rolling]
distro: [iron]

env:
ROS_DISTRO: ${{ matrix.distro }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/sonar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ on:
jobs:
default:
env:
ROS_DISTRO: rolling
ROS_DISTRO: iron
CXXFLAGS: >-
-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls
CLANG_TIDY_ARGS: --fix --fix-errors --format-style=file
DOCKER_IMAGE: moveit/moveit2:rolling-ci
DOCKER_IMAGE: moveit/moveit2:iron-ci
UPSTREAM_WORKSPACE: >
moveit2.repos
$(f="moveit2_$(sed 's/-.*$//' <<< "rolling-ci").repos"; test -r $f && echo $f)
$(f="moveit2_$(sed 's/-.*$//' <<< "iron-ci").repos"; test -r $f && echo $f)
# Pull any updates to the upstream workspace (after restoring it from cache)
AFTER_SETUP_UPSTREAM_WORKSPACE: vcs pull $BASEDIR/upstream_ws/src
AFTER_SETUP_DOWNSTREAM_WORKSPACE: vcs pull $BASEDIR/downstream_ws/src
Expand All @@ -38,7 +38,7 @@ jobs:
BASEDIR: ${{ github.workspace }}/.work
ADDITIONAL_DEBS: lld

name: rolling-ci-ccov-sonar
name: iron-ci-ccov-sonar
runs-on: ubuntu-latest
steps:
- name: "Free up disk space"
Expand Down Expand Up @@ -77,15 +77,15 @@ jobs:
key: ${{ env.CACHE_PREFIX }}-${{ github.run_id }}
restore-keys: ${{ env.CACHE_PREFIX }}
env:
CACHE_PREFIX: ${{ steps.rosdistro_release_date.outputs.date }}-upstream_ws-${{ steps.repos_edit_timestamp.outputs.timestamp }}-rolling-ci-${{ hashFiles('moveit2*.repos', '.github/workflows/ci.yaml') }}
CACHE_PREFIX: ${{ steps.rosdistro_release_date.outputs.date }}-upstream_ws-${{ steps.repos_edit_timestamp.outputs.timestamp }}-iron-ci-${{ hashFiles('moveit2*.repos', '.github/workflows/ci.yaml') }}
- name: Cache ccache
uses: pat-s/always-upload-cache@v3.0.11
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-rolling-ci-ccov-${{ github.sha }}-${{ github.run_id }}
key: ccache-iron-ci-ccov-${{ github.sha }}-${{ github.run_id }}
restore-keys: |
ccache-rolling-ci-ccov-${{ github.sha }}
ccache-rolling-ci-ccov
ccache-iron-ci-ccov-${{ github.sha }}
ccache-iron-ci-ccov
- name: Configure ccache
run: |
mkdir -p ${{ env.CCACHE_DIR }}
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/stale.yaml

This file was deleted.

0 comments on commit 6608798

Please sign in to comment.