Skip to content

tsan

tsan #1127

Workflow file for this run

name: tsan
on:
pull_request:
schedule:
- cron: '36 0 * * *'
jobs:
tsan:
name: tsan
runs-on: ubuntu-20.04
steps:
- name: deps
uses: ros-tooling/[email protected]
with:
required-ros-distributions: foxy
- name: tsan_build_test
uses: ros-tooling/[email protected]
id: tsan_build_test
env:
CC: clang
CXX: clang++
with:
target-ros2-distro: foxy
# build all packages listed in the meta package
package-name: |
rmf_traffic
vcs-repo-file-url: |
https://raw.githubusercontent.com/open-rmf/rmf/main/rmf.repos
colcon-defaults: |
{
"build": {
"mixin": ["tsan"],
"cmake-args": ["-DCMAKE_BUILD_TYPE=Debug"]
}
}
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml
- name: Upload failed test results
uses: actions/upload-artifact@v2
if: failure()
with:
name: test-results
path: ros_ws/build/*/test_results/*/*.catch2.xml
- name: upload_test_stream
uses: actions/upload-artifact@v2
with:
name: colcon-test-logs
path: ${{ steps.tsan_build_test.outputs.ros-workspace-directory-name }}/log
if: always()