-
Notifications
You must be signed in to change notification settings - Fork 109
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
Podman support #248
Podman support #248
Conversation
Thanks! |
@@ -64,3 +64,30 @@ jobs: | |||
PV=${{ matrix.python-version }} | |||
echo "Running tests for Python version $PV ( ${PV/./} )" | |||
make test-py"${PV/./}" | |||
build-podman-3: | |||
runs-on: ubuntu-20.04 |
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.
Why such an old runner, do those tests not work on 22.04 or 24.04?
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] |
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.
Python 3.6 and 3.7 are EOL, is it necessary to test them?
Would 3.13 be green (rc2 is coming out today)?
Squashing images with podman results in failure due to missing index.json file, which is optional according to OCI specification. This PR provides a simple fix.
Unit tests were updated to avoid missing layer IDs.