Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flatcar/scripts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 46441af8ed064eede5c414e03991159bad35c098
Choose a base ref
..
head repository: flatcar/scripts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fd62ad58369a09d66ee32e9612b8b2ea559bca6d
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 ci-automation/vendor-testing/qemu_update.sh
2 changes: 1 addition & 1 deletion ci-automation/vendor-testing/qemu_update.sh
Original file line number Diff line number Diff line change
@@ -94,7 +94,7 @@ run_kola_tests() {
elif [ "${instance_type}" = "first_dual" ]; then
image="tmp/flatcar_production_image_first_dual.bin"
# Only run this test if the Azure dev payload exists on bincache because the fallback download needs it
if curl --head -fsSLO --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 "https://bincache.flatcar-linux.net/images/${CIA_ARCH}/${CIA_VERNUM}/flatcar_test_update-oem-azure.gz"; then
if curl --head -o /dev/null -fsSL --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 "https://bincache.flatcar-linux.net/images/${CIA_ARCH}/${CIA_VERNUM}/flatcar_test_update-oem-azure.gz"; then
tests+=("cl.update.oem")
fi
else