Updates ros-tooling verison to avoid error with dependency. #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clang | |
on: | |
pull_request: | |
types: [labeled] | |
workflow_dispatch: | |
env: | |
PACKAGE_NAME: delphyne_demos | |
ROS_DISTRO: foxy | |
ROS_WS: maliput_ws | |
UBSAN_OPTIONS: halt_on_error=1 | |
jobs: | |
compile_and_test: | |
if: contains(github.event.pull_request.labels.*.name, 'do-clang-test') | |
name: Compile and test | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:20.04 | |
strategy: | |
matrix: | |
sanitizer: [none, asan, ubsan] | |
include: | |
- sanitizer: none | |
COMPILER_FLAG: '' | |
- sanitizer: asan | |
COMPILER_FLAG: ' -DADDRESS_SANITIZER=On' | |
- sanitizer: ubsan | |
COMPILER_FLAG: ' -DUNDEFINED_SANITIZER=On' | |
env: | |
CC: clang-8 | |
CXX: clang++-8 | |
LDFLAGS: -fuse-ld=lld-8 | |
steps: | |
# setup-ros first since it installs git, which is needed to fetch all branches from actions/checkout | |
- uses: ros-tooling/setup-ros@v0.6 | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
- uses: actions/checkout@v3 | |
with: | |
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }} | |
- name: clang 8 install | |
shell: bash | |
run: ${{ env.ROS_WS }}/src/${PACKAGE_NAME}/.github/clang_suite_installation.sh | |
# clone public dependencies | |
- name: vcs import | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
run: vcs import src < src/${PACKAGE_NAME}/.github/dependencies.repos | |
- name: check if dependencies have a matching branch | |
shell: bash | |
working-directory: ${{ env.ROS_WS }}/src | |
run: ./${PACKAGE_NAME}/.github/try_vcs_checkout ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} . | |
- run: colcon graph | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
- name: rosdep install | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
run: | | |
rosdep update --include-eol-distros; | |
rosdep install -i -y --rosdistro ${ROS_DISTRO} --from-paths src | |
- name: install drake | |
shell: bash | |
working-directory: ${{ env.ROS_WS }}/src/drake_vendor | |
run: ./drake_installer | |
- name: colcon build libraries | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
run: | | |
. /opt/ros/${ROS_DISTRO}/setup.bash; | |
colcon build --packages-up-to ${PACKAGE_NAME} \ | |
--event-handlers=console_direct+ \ | |
--cmake-args ${COMPILER_FLAG} \ | |
-DBUILD_TESTING=OFF; | |
- name: colcon build maliput backends | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
run: | | |
. /opt/ros/${ROS_DISTRO}/setup.bash; | |
colcon build --packages-up-to maliput_dragway maliput_multilane maliput_malidrive \ | |
--event-handlers=console_direct+ \ | |
--cmake-args ${COMPILER_FLAG} \ | |
-DBUILD_TESTING=OFF | |
- name: colcon build tests | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
run: | | |
. /opt/ros/${ROS_DISTRO}/setup.bash; | |
colcon build --packages-select ${PACKAGE_NAME} \ | |
--event-handlers=console_direct+ \ | |
--cmake-args ${COMPILER_FLAG} \ | |
-DBUILD_TESTING=ON; | |
- name: colcon test | |
shell: bash | |
working-directory: ${{ env.ROS_WS }} | |
run: | | |
. /opt/ros/${ROS_DISTRO}/setup.bash; | |
. install/setup.bash; | |
colcon test --packages-select ${PACKAGE_NAME} --event-handlers=console_direct+; | |
colcon test-result --verbose; |