You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regression_result="Next FastAI version lookup failed on Arm64"
210
+
regression_details="Baseline FastAI ${current} passed Tests 1-5, but PyPI latest-version lookup failed, so Test 6 could not honestly select a next candidate."
regression_result="Current FastAI version is already latest stable"
218
+
regression_details="Baseline FastAI ${current} passed Tests 1-5, and PyPI reports the same version as latest stable. There is no newer stable FastAI candidate for Test 6."
219
+
set_test 6 skipped "$start"
220
+
return
221
+
fi
222
+
if ! apt_bootstrap podman; then
223
+
regression_decision="next_install_failed"
224
+
regression_next_installed_version="not_installed"
225
+
regression_result="Podman CLI dependency failed to install on Arm64"
226
+
regression_details="Baseline Podman Compose ${current} passed Tests 1-5, but Test 6 could not install the Podman CLI dependency required to validate PyPI latest ${latest} on the Arm64 runner."
regression_result="Next FastAI version installed and passed bounded Arm64 tensor smoke"
250
+
regression_details="Baseline FastAI ${current} passed Tests 1-5, and PyPI latest ${latest} installed on the Arm64 runner, imported FastAI/Torch, verified the Arm64 Python runtime, and ran the same bounded tensor smoke."
regression_result="Next FastAI version failed bounded Arm64 validation"
257
+
regression_details="Baseline FastAI ${current} passed Tests 1-5, but PyPI latest ${latest} did not complete the same bounded install/import/tensor smoke on the Arm64 runner."
regression_result="Next Podman Compose version lookup failed on Arm64"
273
+
regression_details="Baseline Podman Compose ${current} passed Tests 1-5, but PyPI latest-version lookup failed, so Test 6 could not honestly select a next candidate."
regression_result="Current Podman Compose version is already latest stable"
281
+
regression_details="Baseline Podman Compose ${current} passed Tests 1-5, and PyPI reports the same version as latest stable. There is no newer stable Podman Compose candidate for Test 6."
grep -qi 'smoke' /tmp/podman-compose-next-config.log; then
301
+
regression_decision="next_install_validated"
302
+
regression_next_installed_version="$latest"
303
+
regression_result="Next Podman Compose version installed and passed bounded Arm64 dry-run validation"
304
+
regression_details="Baseline Podman Compose ${current} passed Tests 1-5, and PyPI latest ${latest} installed on the Arm64 runner with the Podman CLI dependency, reported the expected version/help output, passed dependency checks, and rendered the same dry-run Compose config."
305
+
set_test 6 passed "$start"
306
+
else
307
+
regression_decision="next_install_failed"
308
+
regression_next_installed_version="not_installed"
309
+
regression_result="Next Podman Compose version failed bounded Arm64 validation"
310
+
regression_details="Baseline Podman Compose ${current} passed Tests 1-5, but PyPI latest ${latest} did not complete the same version/help/dependency/dry-run config validation on the Arm64 runner."
Copy file name to clipboardExpand all lines: .github/workflows/test-amazon-vpc-cni-k8s.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -600,7 +600,7 @@ jobs:
600
600
lane_kind: ${{ env.LANE_KIND }}
601
601
limited_cpu_probe: |
602
602
cd next-src
603
-
go list ./... >/tmp/amazon-vpc-cni-next-go-packages.txt
603
+
GOFLAGS=-mod=mod go list ./... >/tmp/amazon-vpc-cni-next-go-packages.txt
604
604
BUILT=0
605
605
while IFS= read -r main_file; do
606
606
target="$(dirname "$main_file")"
@@ -618,7 +618,7 @@ jobs:
618
618
assert any(marker in text for marker in ("DaemonSet", "amazon-k8s-cni", "aws-node", "CNI")), "missing CNI/Kubernetes markers"
619
619
PY
620
620
limited_cpu_description: "Test 6 reran the scoped Amazon VPC CNI Arm preflight against the next stable source tag: Go package discovery, linux/arm64 command builds, AArch64 binary checks, and Kubernetes/CNI manifest validation. Full pod networking still requires Kubernetes plus AWS VPC/ENI infrastructure."
limited_cpu_description: "Test 6 attempts the same scoped Ampere llama.cpp Arm CLI build against the next stable source candidate when that candidate contains buildable llama.cpp CMake sources. No GGUF model inference is claimed without weights."
387
-
defer_on_limited_cpu_probe_failure: "true"
388
+
SERVER_BIN="$(find "$WORK_DIR" -type f -name llama-server -perm -111 | head -n 1 || true)"
limited_cpu_description: "Test 6 reran a scoped Ampere llama.cpp Arm64 release-artifact preflight against the next stable release: downloaded the official AIO tarball, verified the included llama binaries are AArch64, and ran CLI/server help on the Arm64 runner. No source build, GGUF model inference, model quality, or performance claim is made."
echo "note=Compiled Flyte Go packages for linux/arm64, rendered or validated Flyte Kubernetes manifests, and executed a tiny local flytekit workflow. Kubernetes control-plane deployment remains out of scope." >> "$GITHUB_OUTPUT"
limited_cpu_description: "Test 6 reran the scoped Flyte Arm preflight against the next stable source tag: Go package discovery, linux/arm64 compile smoke, and chart/manifest validation. A live Flyte control plane and Kubernetes execution backend remain out of scope."
limited_cpu_description: "Test 6 reran the scoped Flyte Arm preflight against the next stable source tag: Go package discovery, linux/arm64 compile smoke, chart/manifest validation, and a tiny local Flytekit workflow. A live Flyte control plane and Kubernetes execution backend remain out of scope."
0 commit comments