Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Updating workflows #457

Merged
merged 3 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Loading