Skip to content

Commit

Permalink
fix container
Browse files Browse the repository at this point in the history
Signed-off-by: M. Fatih Cırıt <mfc@leodrive.ai>
  • Loading branch information
M. Fatih Cırıt committed Jun 6, 2024
1 parent 70df7cb commit 7819f87
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .github/actions/build-and-test/action.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: "Build and Test Action"
description: "Reusable action for building and testing the repository"
inputs:
container:
description: "Container to use for the build"
required: true
container-suffix:
description: "Suffix for the container"
required: true
build-depends-repos:
description: "Repositories for build dependencies"
required: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test-cuda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
build-and-test-cuda:
runs-on: [self-hosted, linux, ARM64]
container: ${{ matrix.container }}${{ matrix.container-suffix }}
strategy:
fail-fast: false
matrix:
Expand All @@ -28,7 +29,5 @@ jobs:
- name: Build and Test
uses: ./.github/actions/build-and-test
with:
container: ${{ matrix.container }}
container-suffix: ${{ matrix.container-suffix }}
build-depends-repos: ${{ matrix.build-depends-repos }}
rosdistro: ${{ matrix.rosdistro }}
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test-daily-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
build-and-test-daily-arm64:
runs-on: [self-hosted, linux, ARM64]
container: ${{ matrix.container }}${{ matrix.container-suffix }}
strategy:
fail-fast: false
matrix:
Expand All @@ -29,7 +30,5 @@ jobs:
- name: Build and Test
uses: ./.github/actions/build-and-test
with:
container: ${{ matrix.container }}
container-suffix: ${{ matrix.container-suffix }}
build-depends-repos: ${{ matrix.build-depends-repos }}
rosdistro: ${{ matrix.rosdistro }}
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test-daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
build-and-test-daily:
runs-on: [self-hosted, linux, X64]
container: ${{ matrix.container }}${{ matrix.container-suffix }}
strategy:
fail-fast: false
matrix:
Expand All @@ -29,7 +30,5 @@ jobs:
- name: Build and Test
uses: ./.github/actions/build-and-test
with:
container: ${{ matrix.container }}
container-suffix: ${{ matrix.container-suffix }}
build-depends-repos: ${{ matrix.build-depends-repos }}
rosdistro: ${{ matrix.rosdistro }}

0 comments on commit 7819f87

Please sign in to comment.