Skip to content

Commit

Permalink
[CI] Updating workflows (#457)
Browse files Browse the repository at this point in the history
Signed-off-by: Esteban Martinena <[email protected]>
Signed-off-by: Luca Della Vedova <[email protected]>
Co-authored-by: Yadu <[email protected]>
Co-authored-by: Luca Della Vedova <[email protected]>
  • Loading branch information
3 people authored Mar 26, 2024
1 parent f353f15 commit 88c069b
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 88c069b

Please sign in to comment.