someone above mentioned if i don't want to generate a … bitstream? netlist? i don't know what you call gateware binaries. I want to use do_build = true

I did this

```
from amaranth_boards.icestick import *
from am_blink import LEDBlinker

ICEStickPlatform().build(LEDBlinker(), do_build=False)

```

And it runs successfully, but appears to do literally nothing.

Is there a way to say "emit a verilog file", when using .build?