Skip to content

Commit

Permalink
Added ARM to docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuluPro committed Jun 5, 2023
1 parent f6acf20 commit a518db6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build image
run: docker buildx build . --tag "epicwink/proxpi:${{ github.ref_name }}"
run: docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 . --tag "epicwink/proxpi:${{ github.ref_name }}"
- name: Login to DockerHub
run: >
echo ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ jobs:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
arch: [none, 'armv6', 'armv7']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
arch: ${{ matrix.arch }}
cache: pip
- name: Update pip
run: pip install -U pip
Expand Down

0 comments on commit a518db6

Please sign in to comment.