Skip to content

Commit

Permalink
one build per arch
Browse files Browse the repository at this point in the history
  • Loading branch information
OttPeterR committed Oct 9, 2023
1 parent a7d7930 commit d1324f1
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 4 deletions.
36 changes: 34 additions & 2 deletions .github/workflows/build-tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,43 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Container
- name: Build Container (aarch64)
uses: home-assistant/builder@master
with:
args: |
--test \
--all \
--aarch64 \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (amd64)
uses: home-assistant/builder@master
with:
args: |
--test \
--amd64 \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (armhf)
uses: home-assistant/builder@master
with:
args: |
--test \
--armhf \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (armv7)
uses: home-assistant/builder@master
with:
args: |
--test \
--armv7 \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (i386)
uses: home-assistant/builder@master
with:
args: |
--test \
--i386 \
--target babybuddy \
--docker-hub ottpeterr
32 changes: 30 additions & 2 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,38 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Container
- name: Build Container (aarch64)
uses: home-assistant/builder@master
with:
args: |
--all \
--aarch64 \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (amd64)
uses: home-assistant/builder@master
with:
args: |
--amd64 \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (armhf)
uses: home-assistant/builder@master
with:
args: |
--armhf \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (armv7)
uses: home-assistant/builder@master
with:
args: |
--armv7 \
--target babybuddy \
--docker-hub ottpeterr
- name: Build Container (i386)
uses: home-assistant/builder@master
with:
args: |
--i386 \
--target babybuddy \
--docker-hub ottpeterr

0 comments on commit d1324f1

Please sign in to comment.