Gerrit "patches" are meant as a replacement for the original change being reviewed, not a child commit. The 2nd and subsequent patches are not rewriting history, they are replacements for the present. As such an "amendment" is suitable because history has not been written yet.
Re-basing means you change the lineage of your original work. Amending also makes a new commit and thus the commit time stamp for legal purposes, but does not change the lineage.
If you were to have your CI build on an "integration" branch instead and accept periods of instability, you could submit a "fix" for review first and have a "Try build" of the change commit for sanity, and only do CI builds when those reviews are merged. This would mean never needing to change history, but you may get much more history as you iterate through various attempts at cleanliness in the design.
Gerrit/Git allows re-writes so that open source, which cares less about provenance, can keep a tidier history. Enterprises which care can use a more accurate history approach.