Skip to content

Commit

Permalink
fix docker action
Browse files Browse the repository at this point in the history
Signed-off-by: Masaya Kataoka <[email protected]>
  • Loading branch information
hakuturu583 committed Jan 31, 2024
1 parent 6f512d3 commit adb8c2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/BuildAndRun.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
job1:
name: BuildAndRun
runs-on: ubuntu-22.04
runs-on: ${{ matrix.runs_on }}
timeout-minutes: 180
container: ros:${{ matrix.rosdistro }}
env:
Expand All @@ -29,6 +29,7 @@ jobs:
fail-fast: false
matrix:
rosdistro: [humble]
runs_on: [ubuntu-22.04, macos-14] # macos-14 is added for arm support. See also https://x.com/github/status/1752458943245189120?s=20
steps:
- name: suppress warnings
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
rosdistro: [humble]
platform: ["linux/amd64", "linux/arm64/v8"]
platform: ["linux/amd64"]
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit adb8c2e

Please sign in to comment.