Skip to content

Commit

Permalink
Merge branch 'main' into charlywrx/fix_building_py
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-della-vedova authored Mar 26, 2024
2 parents 6fc4bdc + 88c069b commit 8a2ec82
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 100 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/asan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: asan

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
asan_test:
name: rmf_traffic_editor asan
uses: open-rmf/rmf_ci_templates/.github/workflows/reusable_build.yaml@main
with:
dist-matrix: |
[{"ros_distribution": "humble",
"ubuntu_distribution": "jammy"}]
# NOTE: Avoid adding comments in the package lines, this can break some of the called scripts in github actions
packages: |
rmf_traffic_editor
rmf_traffic_editor_test_maps
mixin: asan

19 changes: 19 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 0 1 * *'

jobs:
build_and_test:
name: rmf_traffic_editor
uses: open-rmf/rmf_ci_templates/.github/workflows/reusable_build.yaml@main
with:
# NOTE: Avoid adding comments in the package lines, this can break some of the called scripts in github actions
packages: |
rmf_traffic_editor
rmf_traffic_editor_test_maps
49 changes: 0 additions & 49 deletions .github/workflows/ci.yaml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/ci_rolling.yaml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/tsan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: tsan

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
tsan_test:
name: rmf_traffic_editor tsan
uses: open-rmf/rmf_ci_templates/.github/workflows/reusable_build.yaml@main
with:
dist-matrix: |
[{"ros_distribution": "humble",
"ubuntu_distribution": "jammy"}]
# NOTE: Avoid adding comments in the package lines, this can break some of the called scripts in github actions
packages: |
rmf_traffic_editor
rmf_traffic_editor_test_maps
mixin: tsan

0 comments on commit 8a2ec82

Please sign in to comment.