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

[next] overrides: pin containerd-1.6.19-1.fc39, add docker test #2625

Merged
merged 2 commits into from
Sep 21, 2023
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: 5 additions & 0 deletions manifest-lock.overrides.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ packages:
bodhi: https://bodhi.fedoraproject.org/updates/FEDORA-2023-641e1cd18e
reason: https://github.com/coreos/fedora-coreos-tracker/issues/1362
type: fast-track
containerd:
evr: 1.6.19-1.fc39
metadata:
reason: https://github.com/coreos/fedora-coreos-tracker/issues/1578
type: pin
coreos-installer:
evr: 0.18.0-1.fc39
metadata:
Expand Down
16 changes: 16 additions & 0 deletions tests/kola/docker/basic
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
## kola:
## # Must not run this test with another podman test
## exclusive: true
## # This test pulls a container image from remote sources.
## tags: "platform-independent needs-internet"
## description: Verify that running a basic container with docker works.

set -xeuo pipefail

# shellcheck disable=SC1091
. "$KOLA_EXT_DATA/commonlib.sh"

docker run --rm registry.fedoraproject.org/fedora:38 true

ok "basic docker run successfully"
1 change: 1 addition & 0 deletions tests/kola/docker/data/commonlib.sh