sysprog21 / rv32emu

Compact and Efficient RISC-V RV32I[MAFC] emulator
MIT License
402 stars 99 forks source link

CI: Install wget package for Alpine Linux #489

Closed jserv closed 2 months ago

jserv commented 2 months ago

Recently, we have been transitioning from using curl to wget for downloading files from remote hosts. However, the version of wget provided by Alpine Linux is actually a Busybox implementation, which lacks many features found in the full wget package.

Error messages:

  #15 [linux/amd64 base_gcc 5/6] RUN make ENABLE_SDL=0
  #15 0.207 Check the file build/.config for configured items.
  #15 0.360 Fetching prebuilt executables from "rv32emu-prebuilt" ...
  #15 0.361 wget: unrecognized option: show-progress

This commit attempts to install wget package instead.