forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: change build-and-test workflow (autowarefoundation#297)
* ci: change build-and-test workflow Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * fix branch name Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * minor fix Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * split workflow file Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
- Loading branch information
1 parent
6bb3445
commit ebc5224
Showing
2 changed files
with
40 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: build-and-test-arm | ||
|
||
on: | ||
schedule: | ||
- cron: 0 19 * * * # run at 4 AM JST | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-test-arm: | ||
runs-on: ARM64 | ||
container: ros:galactic | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Remove exec_depend | ||
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal | ||
|
||
- name: Register AutonomouStuff repository | ||
uses: autowarefoundation/autoware-github-actions/register-autonomoustuff-repository@tier4/proposal | ||
with: | ||
rosdistro: galactic | ||
|
||
- name: Get self packages | ||
id: get-self-packages | ||
uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal | ||
|
||
- name: Build and test | ||
uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal | ||
with: | ||
rosdistro: galactic | ||
target-packages: ${{ steps.get-self-packages.outputs.self-packages }} | ||
build-depends-repos: build_depends.repos |
14 changes: 7 additions & 7 deletions
14
...b/workflows/build-and-test-scheduled.yaml → .github/workflows/build-and-test.yaml
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