Skip to content

Commit c3a32b1

Browse files
Merge pull request #21366 from edsantiago/new-vms
Test new CI VMs
2 parents 4fde98f + 1ab55de commit c3a32b1

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ env:
3333
DEBIAN_NAME: "debian-13"
3434

3535
# Image identifiers
36-
IMAGE_SUFFIX: "c20240102t212217z-f39f38d13"
36+
IMAGE_SUFFIX: "c20240201t143038z-f39f38d13"
3737

3838

3939
# EC2 images

contrib/cirrus/lib.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,6 @@ remove_packaged_podman_files() {
294294
# Do so without running podman, lest that invocation initialize unwanted state.
295295
rm -f /run/podman/podman.sock /run/user/$(id -u)/podman/podman.sock || true
296296

297-
rm -f $(podman info --format "{{.Host.RemoteSocket.Path}}")
298-
299297
# yum/dnf/dpkg may list system directories, only remove files
300298
$LISTING_CMD | while read fullpath
301299
do

contrib/cirrus/setup_environment.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,11 @@ runroot = "/run/containers/storage"
205205
graphroot = "/var/lib/containers/storage"
206206
EOF
207207

208+
# Since we've potentially changed important config settings, reset.
209+
# This prevents `database graph driver "" does not match "overlay"`
210+
# on Debian.
211+
rm -rf /var/lib/containers/storage
212+
208213
# shellcheck disable=SC2154
209214
showrun echo "Setting CI_DESIRED_STORAGE [=$CI_DESIRED_STORAGE] for *e2e* tests"
210215
echo "STORAGE_FS=$CI_DESIRED_STORAGE" >>/etc/ci_environment
@@ -291,6 +296,10 @@ esac
291296
#
292297
# Either way, this block of code should be removed after March 31 2023
293298
# because it creates a system that is not representative of real-world Fedora.
299+
#
300+
# 2024-01-25 update: ha ha. This fix has proven so popular that it is
301+
# being used by other groups who were seeing the cdn03 flake. Looks like
302+
# we're stuck with it.
294303
if ((CONTAINER==0)); then
295304
nsswitch=/etc/authselect/nsswitch.conf
296305
if [[ -e $nsswitch ]]; then

test/e2e/run_networking_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var _ = Describe("Podman run networking", func() {
2424
hostname, _ := os.Hostname()
2525

2626
It("podman verify network scoped DNS server and also verify updating network dns server", func() {
27+
Skip("FIXME: needs netavark > 1.10.2, available >= 2024-02-02")
2728
// Following test is only functional with netavark and aardvark
2829
SkipIfCNI(podmanTest)
2930
net := createNetworkName("IntTest")
@@ -71,6 +72,8 @@ var _ = Describe("Podman run networking", func() {
7172
})
7273

7374
It("podman network dns multiple servers", func() {
75+
Skip("FIXME: needs netavark > 1.10.2, available >= 2024-02-02")
76+
7477
// Following test is only functional with netavark and aardvark
7578
SkipIfCNI(podmanTest)
7679
net := createNetworkName("IntTest")

0 commit comments

Comments
 (0)