Closed saschagrunert closed 3 years ago
Also curious; is windows/386
still a thing (are there packages building for that?) or did you run into this on an over-enthusiastic CI matrix?
Also curious; is
windows/386
still a thing (are there packages building for that?) or did you run into this on an over-enthusiastic CI matrix?
Yeah, we're building cri-tools for windows/386
. Go 1.15 dropped support for darwin/386
so we could also consider dropping that binary too. The main import was coming from the docker/distribution package.
Yeah, we're building cri-tools for windows/386. Go 1.15 dropped support for darwin/386 so we could also consider dropping that binary too. The main import was coming from the docker/distribution package.
Thanks for the extra info!
I had a quick check internally as well wether windows/386 still should be considered "a thing", and apparently it's still used, but mostly in VMs to run legacy software, so I doubt those machines would have docker or kubernetes installed (famous last words 😂)
So, yes, I'm usually ok with changes like this (doesn't really hurt to at least make it build), just a bit cautious on the breaking change.
That said, this repository has not done a tagged release yet, so "technically" it's ok to still be "unstable". The breaking change likely wouldn't be an issue for k8s / bigger projects that more likely pin dependencies, but may trip over other users.
That said, this repository has not done a tagged release yet, so "technically" it's ok to still be "unstable". The breaking change likely wouldn't be an issue for k8s / bigger projects that more likely pin dependencies, but may trip over other users.
Hm I see, I think it just depends how we wanna move forward with this change.
@saschagrunert I think this issue may be resolved by https://github.com/moby/term/pull/24; would you be able to test/confirm?
@saschagrunert I think this issue may be resolved by #24; would you be able to test/confirm?
Yep this works, thank you!
Perfect, thanks!!
Before this patch, the build on 32bit windows would fail with:
We now cast the values to int64 to avoid this error.