Skip to content

Commit 4e85663

Browse files
authored
Merge pull request #181 from wxmerkt/topic/ros-ci-activate-prerelease
[CI] ROS: Activate prerelease
2 parents 61f2e3b + 8516131 commit 4e85663

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci-linux-ros.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,23 @@ jobs:
1010
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: OFF}
1111
- {ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
1212
- {ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
13+
- {ROS_DISTRO: humble, PRERELEASE: true}
1314
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
1415
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
16+
- {ROS_DISTRO: rolling, PRERELEASE: true}
1517
env:
16-
CCACHE_DIR: /github/home/.ccache # Enable ccache
18+
#CCACHE_DIR: /github/home/.ccache # Enable ccache
1719
CMAKE_ARGS: -DBUILD_WITH_VECTORIZATION_SUPPORT=${{ matrix.env.VECTORIZATION_SUPPORT }} # Simde is available since humble
1820
runs-on: ubuntu-latest
1921
steps:
2022
- uses: actions/checkout@v3
2123
with:
2224
submodules: recursive
2325
# This step will fetch/store the directory used by ccache before/after the ci run
24-
- uses: actions/cache@v3
25-
with:
26-
path: ${{ env.CCACHE_DIR }}
27-
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
26+
#- uses: actions/cache@v3
27+
# with:
28+
# path: ${{ env.CCACHE_DIR }}
29+
# key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
2830
# Run industrial_ci
2931
- uses: 'ros-industrial/industrial_ci@master'
3032
env: ${{ matrix.env }}

0 commit comments

Comments
 (0)