Replies: 1 comment 1 reply
-
I ran a few experiments and here are the results for 1. Building only
|
Build time | ||
---|---|---|
1m 39s | 5.63s | |
30.47s | 1.85s |
2. Building both src
and test
Build time | ||
---|---|---|
1h 10m 5s | 2m 47s | |
23m 6s | 80.54s |
With unoptimised IR, the repo build time is ~23 mins. Considering the lite profile is only used during development and we need to build both src
and test
, I think via_ir = false
is fine even if the generated bytecodes are different. Wdyt?
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Basically, enable via IR but disable the optimizer in the
lite
profile. As per @cameel's suggestion:Beta Was this translation helpful? Give feedback.
All reactions