You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For spago bundle-app and spago bundle-module it is currently impossible to pass arguments straight down to purs. We're running into extremely long build times on Circle CI due to PureScript detects more cores than are actually available. We get around that by setting --purs-args='+RTS -N2 -RTS'. However, this only works for spago build, not for the bundle commands (
). To highlight the severity of the issue, for our project bundeling without those flags takes somewhere between 17 and 20 minutes, whereas with the flag set it only takes about 45 seconds. We are temporarily falling back to just invoking purs directly for bundling.
The text was updated successfully, but these errors were encountered:
For
spago bundle-app
andspago bundle-module
it is currently impossible to pass arguments straight down topurs
. We're running into extremely long build times on Circle CI due to PureScript detects more cores than are actually available. We get around that by setting--purs-args='+RTS -N2 -RTS'
. However, this only works forspago build
, not for the bundle commands (spago/src/Spago/Build.hs
Line 280 in 083ef16
purs
directly for bundling.The text was updated successfully, but these errors were encountered: