Skip to content

Commit

Permalink
arm32 workflow not starting
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderBarbie committed Jun 19, 2024
1 parent e47c970 commit aefe65b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-arm32v7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: [self-hosted, Linux, ARM]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: build core container
working-directory: ./PiCar-X
Expand All @@ -22,7 +22,7 @@ jobs:
unit-tests:
runs-on: [self-hosted, Linux, ARM]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run pytest in Docker container
working-directory: ./PiCar-X
run: |
Expand All @@ -31,7 +31,7 @@ jobs:
integration-tests:
runs-on: [self-hosted, Linux, ARM]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Start roslaunch in Docker container
working-directory: ./PiCar-X
run: |
Expand All @@ -40,7 +40,7 @@ jobs:
release:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4
- name: Push to Docker Hub
working-directory: ./PiCar-X
run: |
TAG=latest-arm32v7 docker compose -f docker-compose-dtp-no-gazebo.yml push
9 changes: 4 additions & 5 deletions .github/workflows/build-arm64v8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ jobs:
runs-on: [self-hosted, Linux, ARM64]

steps:
- uses: actions/checkout@v2

- uses: actions/checkout@v4
- name: build core container
working-directory: ./PiCar-X
run: |
Expand All @@ -22,7 +21,7 @@ jobs:
unit-tests:
runs-on: [self-hosted, Linux, ARM64]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run pytest in Docker container
working-directory: ./PiCar-X
run: |
Expand All @@ -31,7 +30,7 @@ jobs:
integration-tests:
runs-on: [self-hosted, Linux, ARM64]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Start roslaunch in Docker container
working-directory: ./PiCar-X
run: |
Expand All @@ -40,7 +39,7 @@ jobs:
release:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4
- name: Push to Docker Hub
working-directory: ./PiCar-X
run: |
TAG=latest-arm64v8 docker compose -f docker-compose-dtp-no-gazebo.yml push
8 changes: 4 additions & 4 deletions .github/workflows/build-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: [self-hosted, Linux, X64]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: build core container
working-directory: ./PiCar-X
Expand All @@ -22,7 +22,7 @@ jobs:
unit-tests:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run pytest in Docker container
working-directory: ./PiCar-X
run: |
Expand All @@ -31,7 +31,7 @@ jobs:
integration-tests:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Start roslaunch in Docker container
working-directory: ./PiCar-X
run: |
Expand All @@ -40,7 +40,7 @@ jobs:
release:
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4
- name: Push to Docker Hub
working-directory: ./PiCar-X
run: |
TAG=latest docker compose -f docker-compose-dtp.yml push

0 comments on commit aefe65b

Please sign in to comment.