Skip to content

Commit 9225c09

Browse files
authored
Merge pull request #188 from deniszh/DZ-1.1.8-4
Fixing build blags for arm64
2 parents 1427ded + 6800634 commit 9225c09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/master-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
docker buildx build --platform=linux/amd64 --push -t graphiteapp/graphite-statsd:master .
4141
- name: Build and push amd64 pypy image to Docker Hub
4242
run: |
43-
docker buildx build --platform=linux/amd64 --build-arg BASEIMAGE=${PYPY_IMAGE} --build-arg python_binary=/usr/local/bin/pypy3 --push -t graphiteapp/graphite-statsd:master-pypy .
43+
docker buildx build --platform=linux/amd64 --build-arg BASEIMAGE=${PYPY_IMAGE} --build-arg python_binary=/usr/local/bin/pypy3 --build-arg python_extra_flags="" --push -t graphiteapp/graphite-statsd:master-pypy .
4444
# - name: Login to ghcr.io
4545
# run: |
4646
# echo "${{ secrets.GHCR_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin

.github/workflows/release-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
5050
# Strip "v" prefix from tag name
5151
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo ${VERSION} | sed -e 's/^v//')
52-
docker buildx build --platform=linux/amd64 --build-arg BASEIMAGE=${PYPY_IMAGE} --build-arg python_binary=/usr/local/bin/pypy3 --push -t graphiteapp/graphite-statsd:${VERSION}-pypy .
52+
docker buildx build --platform=linux/amd64 --build-arg BASEIMAGE=${PYPY_IMAGE} --build-arg python_binary=/usr/local/bin/pypy3 --build-arg python_extra_flags="" --push -t graphiteapp/graphite-statsd:${VERSION}-pypy .
5353
- name: Build and push multi-platform images to Docker Hub
5454
run: |
5555
# Strip git ref prefix from version

0 commit comments

Comments
 (0)