Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base image for the pypa-rust images #77

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-centos-pypa-rust-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
branches:
- main
paths:
- 'centos-pypa-aarch64/*'
- 'centos-pypa-rust-aarch64/*'
- '.github/workflows/build-centos-pypa-rust-aarch64.yml'
pull_request:
paths:
- 'centos-pypa-aarch64/*'
- 'centos-pypa-rust-aarch64/*'
- '.github/workflows/build-centos-pypa-rust-aarch64.yml'
workflow_dispatch:
schedule:
Expand All @@ -29,3 +29,4 @@ jobs:
dockerfile: ./centos-pypa-rust-aarch64/Dockerfile
image_subpath: centos-pypa-rust-aarch64
alternate-latest-mode: true
push: ${{ github.event_name != 'pull_request' }}
5 changes: 3 additions & 2 deletions .github/workflows/build-centos-pypa-rust-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
branches:
- main
paths:
- 'centos-pypa-x86_64/*'
- 'centos-pypa-rust-x86_64/*'
- '.github/workflows/build-centos-pypa-rust-x86_64.yml'
pull_request:
paths:
- 'centos-pypa-x86_64/*'
- 'centos-pypa-rust-x86_64/*'
- '.github/workflows/build-centos-pypa-rust-x86_64.yml'
workflow_dispatch:
schedule:
Expand All @@ -29,3 +29,4 @@ jobs:
dockerfile: ./centos-pypa-rust-x86_64/Dockerfile
image_subpath: centos-pypa-rust-x86_64
alternate-latest-mode: true
push: ${{ github.event_name != 'pull_request' }}
2 changes: 1 addition & 1 deletion centos-pypa-rust-aarch64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/pypa/manylinux2014_aarch64
FROM quay.io/pypa/manylinux_2_28_aarch64

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion centos-pypa-rust-x86_64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/pypa/manylinux2014_x86_64
FROM quay.io/pypa/manylinux_2_28_x86_64

WORKDIR /usr/src/app

Expand Down
Loading