-
Notifications
You must be signed in to change notification settings - Fork 886
broken test: bud-multiple-platform-values #4396
Copy link
Copy link
Open
Labels
Description
Two tests are not run in CI because the CI VMs don't have emulation tools:
ok 350 bud-multiple-platform-values # skip unable to run arm container, assuming emulation is not available
ok 352 bud-multiple-platform-failure # skip unable to run arm container, assuming emulation is not available
Both are broken. I can fix the "-failure" one (it's just a wrong expected exit code, 125 when it should be 1) but I don't know the intention of the "-values" one and can't fix it. This is the failure:
Error: COPY --from=alpine: no stage or image found with that name
...and this is the Dockerfile:
| COPY --from=alpine /etc/apk/arch /root/ |
Maybe that should be from=base, or maybe line 4 should be FROM alpine AS somethingelse? I'm not wise enough to know. @nalind this is your code from June 2021, I'll leave it in your hands.
And, I wonder if we should install qemu in our test VMs?
Reactions are currently unavailable