Skip to content

Commit 8e23b77

Browse files
authored
Merge pull request #195 from deniszh/DZ-no-pypy
Disabling pypy builds for now
2 parents 6c31700 + ef697ee commit 8e23b77

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/master-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
- name: Build and push amd64 python3 image to Docker Hub
3939
run: |
4040
docker buildx build --platform=linux/amd64 --push -t graphiteapp/graphite-statsd:master .
41-
- name: Build and push amd64 pypy image to Docker Hub
42-
run: |
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 .
41+
# - name: Build and push amd64 pypy image to Docker Hub
42+
# run: |
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
4444
docker buildx build --platform=linux/amd64 --push -t graphiteapp/graphite-statsd:${VERSION} .
4545
docker buildx build --platform=linux/amd64 --push -t graphiteapp/graphite-statsd:latest .
46-
- name: Build and push amd64 pypy image to Docker Hub
47-
run: |
48-
# Strip git ref prefix from version
49-
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
50-
# Strip "v" prefix from tag name
51-
[[ "${{ 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 --build-arg python_extra_flags="" --push -t graphiteapp/graphite-statsd:${VERSION}-pypy .
46+
# - name: Build and push amd64 pypy image to Docker Hub
47+
# run: |
48+
# # Strip git ref prefix from version
49+
# VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
50+
# # Strip "v" prefix from tag name
51+
# [[ "${{ 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 --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)