From fe83453707e4295c66e29dff5090781ab75fd076 Mon Sep 17 00:00:00 2001 From: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> Date: Fri, 4 Feb 2022 11:01:31 +0900 Subject: [PATCH] tmp: add mixin Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> --- .github/workflows/build-and-test-arm-pr.yaml | 4 ++++ .github/workflows/build-and-test-arm.yaml | 4 ++++ .github/workflows/build-and-test-pr.yaml | 4 ++++ .github/workflows/build-and-test.yaml | 4 ++++ .github/workflows/check-build-depends.yaml | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/.github/workflows/build-and-test-arm-pr.yaml b/.github/workflows/build-and-test-arm-pr.yaml index 41921ece018da..9cf5882d751c9 100644 --- a/.github/workflows/build-and-test-arm-pr.yaml +++ b/.github/workflows/build-and-test-arm-pr.yaml @@ -37,6 +37,10 @@ jobs: id: get-modified-packages uses: autowarefoundation/autoware-github-actions/get-modified-packages@tier4/proposal + - name: Install mixin + run: | + apt-get update && apt-get install --no-install-recommends -y python3-colcon-mixin + - name: Build and test if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }} uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal diff --git a/.github/workflows/build-and-test-arm.yaml b/.github/workflows/build-and-test-arm.yaml index 30a779fd98123..eb3ab947451c5 100644 --- a/.github/workflows/build-and-test-arm.yaml +++ b/.github/workflows/build-and-test-arm.yaml @@ -26,6 +26,10 @@ jobs: id: get-self-packages uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal + - name: Install mixin + run: | + apt-get update && apt-get install --no-install-recommends -y python3-colcon-mixin + - name: Build and test uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal with: diff --git a/.github/workflows/build-and-test-pr.yaml b/.github/workflows/build-and-test-pr.yaml index de3fc25e6f09e..99035204038d0 100644 --- a/.github/workflows/build-and-test-pr.yaml +++ b/.github/workflows/build-and-test-pr.yaml @@ -28,6 +28,10 @@ jobs: id: get-modified-packages uses: autowarefoundation/autoware-github-actions/get-modified-packages@tier4/proposal + - name: Install mixin + run: | + apt-get update && apt-get install --no-install-recommends -y python3-colcon-mixin + - name: Build and test if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }} uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index e0878b665d2ea..639b96c507035 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -30,6 +30,10 @@ jobs: id: get-self-packages uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal + - name: Install mixin + run: | + apt-get update && apt-get install --no-install-recommends -y python3-colcon-mixin + - name: Build and test uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal with: diff --git a/.github/workflows/check-build-depends.yaml b/.github/workflows/check-build-depends.yaml index 20848a436a7cd..02fb181fc8623 100644 --- a/.github/workflows/check-build-depends.yaml +++ b/.github/workflows/check-build-depends.yaml @@ -28,6 +28,10 @@ jobs: id: get-self-packages uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal + - name: Install mixin + run: | + apt-get update && apt-get install --no-install-recommends -y python3-colcon-mixin + - name: Build and test uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal with: