Skip to content

Commit

Permalink
dep: Bump PyPy to 7.3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyb3r-Jak3 committed Aug 29, 2024
1 parent b188da7 commit 8534955
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,20 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to my JFrog Artifactory
uses: docker/login-action@v3
with:
username: ${{ secrets.ARTIFACTORY_USER }}
password: ${{ secrets.ARTIFACTORY_TOKEN }}
registry: mine.jfrog.cyberjake.xyz

- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=false
images: cyb3rjak3/${{ matrix.target }}
images: cyb3rjak3/${{ matrix.target }},ghcr.io/cyb3r-jak3/${{ matrix.target }},mine.jfrog.cyberjake.xyz/${{ matrix.target }}
labels: |
org.label-schema.vcs-url=https://github.com/Cyb3r-Jak3/docker-alpine-pypy.git
maintainer=Cyb3r Jak3 git@cyberjake.xyz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-pypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
env:
ALPINE_VERSION: 3.19
BUILDER_IMAGE_TAG: ghcr.io/cyb3r-jak3/alpine-pypy-builder-workflow
PYPY_VERSION: 7.3.16
PYPY_VERSION: 7.3.17

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BUILD_IMAGE=ghcr.io/cyb3r-jak3/python-2.7.18:3.17
FROM ${BUILD_IMAGE}

# Add build dependencies
RUN apk add --no-cache --virtual .build-deps \
RUN --mount=type=cache,target=/var/cache/apk,sharing=locked apk add --no-cache --virtual .build-deps \
bzip2-dev \
expat-dev \
gcc \
Expand All @@ -23,7 +23,7 @@ RUN apk add --no-cache --virtual .build-deps \
xz-dev \
zlib-dev

RUN pip install --no-cache-dir --disable-pip-version-check pycparser
RUN --mount=type=cache,target=/root/.cache/pip pip install --disable-pip-version-check pycparser

WORKDIR /usr/src/pypy

Expand Down

0 comments on commit 8534955

Please sign in to comment.