-
Notifications
You must be signed in to change notification settings - Fork 6
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
Base: Update to Debian 12.5 #82
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d9d9c06
Update to Debian 12.5
mbargull ef950c2
Replace deprecated "conda info --all"
mbargull ceab730
Show podman/buildah versions
mbargull 5f88144
Use newer CI build image
mbargull dfb738f
Try newer podman/buildah via travier/podman-action
mbargull File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,23 +14,47 @@ on: | |
jobs: | ||
build: | ||
name: Build & Push | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
container: | ||
# travier/podman-action contains newer podman/buildah versions. | ||
image: quay.io/travier/podman-action | ||
options: --privileged | ||
env: | ||
# The base image is not intended to change often and should be used with | ||
# version tags or checksum IDs, but not via "latest". | ||
MAJOR_VERSION: 3 | ||
MINOR_VERSION: 0 | ||
MINOR_VERSION: 1 | ||
IMAGE_NAME: base-glibc-busybox-bash | ||
BUSYBOX_VERSION: '1.36.1' | ||
DEBIAN_VERSION: '12.2' | ||
DEBIAN_VERSION: '12.5' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: arm64 | ||
run: | | ||
podman run --rm --privileged \ | ||
docker.io/tonistiigi/binfmt --install arm64 | ||
Comment on lines
+36
to
+37
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is essentially the same as what |
||
|
||
- name: Install Tools | ||
run: | | ||
set -eu | ||
# jq is not installed in travier/podman-action | ||
dnf install -qy \ | ||
jq | ||
rpm -q \ | ||
buildah podman \ | ||
coreutils findutils sed \ | ||
curl jq \ | ||
| ( | ||
while read -r line ; do | ||
printf %s\\n "${line}" | ||
case "${line}" in (*' not installed'*) | ||
err=1 ;; | ||
esac | ||
done | ||
exit "${err-0}" | ||
) | ||
|
||
- name: Build | ||
id: build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
refs:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should fix bioconda/bioconda-utils#958 since this uses
buildah >=1.35.0
which includes containers/storage#1847 .On the Docker side, the issue should also be resolved for older images when
docker >=25.0.4
onward is used.