Skip to content

Commit

Permalink
hotfix CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
FranekStark committed Sep 23, 2024
1 parent 139f2c8 commit 3daab5f
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,7 @@ jobs:

# Step 4: Build and load Docker image for x86_64
- name: Build Docker image for x86_64
run:
docker buildx build \
--platform linux/amd64 \
--build-arg HW_ARCH=x86_64 \
--output=type=docker \
-t dfki-quad-x86_64 docker
run: docker buildx build --platform linux/amd64 --build-arg HW_ARCH=x86_64 --output=type=docker -t dfki-quad-x86_64 docker

# Step 5a: Run the build inside the Docker container for x86_64
- name: Run build on x86_64
Expand All @@ -58,11 +53,7 @@ jobs:
# Step 4: Build and load Docker image for ARM (Raspberry Pi) locally
- name: Build Docker image for ARM
run:
docker buildx build \
--platform linux/arm64 \
--build-arg HW_ARCH=aarch64 \
--output=type=docker \
-t dfki-quad-arm docker
docker buildx build --platform linux/arm64 --build-arg HW_ARCH=aarch64 --output=type=docker -t dfki-quad-arm docker

# Step 5b: Run the build inside the Docker container for ARM
- name: Run build on ARM
Expand Down

0 comments on commit 3daab5f

Please sign in to comment.