Skaffold should work! 馃拑
位 curl -s https://storage.googleapis.com/skaffold/releases/v1.5.0/skaffold-windows-amd64.exe -o skaffold-15 && ./skaffold-15 version
v1.5.0
Skaffold doesn't work! 馃槩
位 curl -s https://storage.googleapis.com/skaffold/releases/v1.6.0/skaffold-windows-amd64.exe -o skaffold-16 && ./skaffold-16 version
bash: ./skaffold-16: cannot execute binary file: Exec format error
Perhaps something went wrong with the windows build?
skaffoldSame problem with the linux release.
~/tmp curl -s https://storage.googleapis.com/skaffold/releases/v1.6.0/skaffold-linux-amd64 -o skaffold-16 && ./skaffold-16 version
zsh: exec format error: ./skaffold-16
The same for linux.
-bash: /usr/local/bin/skaffold: cannot execute binary file: Exec format error.
The same for linux.
-bash: /usr/local/bin/skaffold: cannot execute binary file: Exec format error
Same occurring for me in linux (Ubuntu 19.10) -
Linux vignesh-predator 5.3.0-42-generic #34-Ubuntu SMP Fri Feb 28 05:49:40 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
I get this error:

@balopat @tejal29
It appears at least the linux release is a Darwin binary:
$ curl -s -LO https://github.com/GoogleContainerTools/skaffold/releases/download/v1.6.0/skaffold-linux-amd64
$ file skaffold-linux-amd64
skaffold-linux-amd64: Mach-O 64-bit x86_64 executable, flags:<NOUNDEFS|DYLDLINK|TWOLEVEL>
Looks like this release was made manually according to the issue https://github.com/GoogleContainerTools/skaffold/issues/3847
If you can't wait, just build from source :)
I am so sorry, I will fix this, yes I manually pushed the binaries, using the results of make cross from Mac. Probably something got messed up in our build process.
To build from source:
$ git clone https://github.com/GoogleContainerTools/skaffold.git
$ cd skaffold
$ git checkout v1.6.0
$ ./hack/install_golint.sh
$ make
$ sudo mv out/skaffold /usr/local/bin
This should be fixed now! Please confirm.
I've tested for MacOS version, and it's working... thanks
Works on linux. :+1:
I tested on windows and works now too. Please ping here if you see something's wrong. The homebrew update is still outstanding, https://github.com/Homebrew/homebrew-core/pull/51915. Thanks!
Most helpful comment
Same problem with the linux release.