From e31d9870cf35818edf3cd569fd17450ece7af13c Mon Sep 17 00:00:00 2001 From: peytonr18 Date: Tue, 17 Feb 2026 11:59:54 -0800 Subject: [PATCH 1/3] Updating toml dependency in libazureinit/cargo.toml --- libazureinit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libazureinit/Cargo.toml b/libazureinit/Cargo.toml index 6188839d..eb4bb4f2 100644 --- a/libazureinit/Cargo.toml +++ b/libazureinit/Cargo.toml @@ -28,7 +28,7 @@ tokio-util = "0.7" sysinfo = "0.38" anyhow = "1" fstab = "0.4.0" -toml = "0.9" +toml = "1.0" regex = "1" lazy_static = "1.4" figment = { version = "0.10", features = ["toml"] } From 6f6b4ff8d32d165a272120fa7da11f25267e7507 Mon Sep 17 00:00:00 2001 From: peytonr18 Date: Tue, 17 Feb 2026 13:18:39 -0800 Subject: [PATCH 2/3] Updating dockerfile to update packages --- testinit/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testinit/Dockerfile b/testinit/Dockerfile index 4bc3d67c..2e36b0fa 100644 --- a/testinit/Dockerfile +++ b/testinit/Dockerfile @@ -8,7 +8,8 @@ VOLUME [ "/sys/fs/cgroup" ] RUN if command -v apt-get >/dev/null 2>&1; then \ # Debian/Ubuntu (apt-based) \ - apt-get update && apt-get install -y \ + apt-get -o Acquire::Retries=3 update; \ + apt-get install -y \ systemd \ dbus \ curl \ From 6ec9c8046d3f84546b0518cb0cacbe6ac7e798e9 Mon Sep 17 00:00:00 2001 From: peytonr18 Date: Tue, 17 Feb 2026 13:27:36 -0800 Subject: [PATCH 3/3] testing retry for container --- .github/workflows/e2e-testing.yml | 3 +++ testinit/Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-testing.yml b/.github/workflows/e2e-testing.yml index d64ceab3..c096a44e 100644 --- a/.github/workflows/e2e-testing.yml +++ b/.github/workflows/e2e-testing.yml @@ -27,6 +27,9 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + with: + driver-opts: | + network=host - name: Make start-all.sh executable run: chmod +x testinit/start-all.sh testinit/stop-all.sh diff --git a/testinit/Dockerfile b/testinit/Dockerfile index 2e36b0fa..46cf7ad5 100644 --- a/testinit/Dockerfile +++ b/testinit/Dockerfile @@ -8,8 +8,8 @@ VOLUME [ "/sys/fs/cgroup" ] RUN if command -v apt-get >/dev/null 2>&1; then \ # Debian/Ubuntu (apt-based) \ - apt-get -o Acquire::Retries=3 update; \ - apt-get install -y \ + apt-get -o Acquire::Retries=3 update \ + && apt-get -o Acquire::Retries=3 install -y \ systemd \ dbus \ curl \