julia-actions / setup-julia

This action sets up a Julia environment for use in actions by downloading a specified version of Julia and adding it to PATH.
MIT License
93 stars 23 forks source link

Benchmark if Windows installer or Windows archive is faster to install #64

Closed SaschaMann closed 10 months ago

SaschaMann commented 3 years ago

Recent versions of Julia are also shipped as a portable .zip file for Windows. That may or may not be faster than running the installer.

IanButterworth commented 10 months ago

Zip is slightly faster but still slow https://github.com/julia-actions/setup-julia/pull/171

Supposedly the windows installers might be more compressed than other platforms, so might be unavoidably slower

IanButterworth commented 10 months ago

.tar.gz wins! https://github.com/julia-actions/setup-julia/pull/171 They were added for use by juliaup, so we should be able to rely on their existence.