We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab67c7 commit 742e309Copy full SHA for 742e309
.github/workflows/wasm.yaml
@@ -121,7 +121,10 @@ jobs:
121
run: |
122
mkdir ~/out
123
wasm32-wasi-cabal build
124
- cp $(wasm32-wasi-cabal list-bin als) ~/out
+ ALS_PATH=$(wasm32-wasi-cabal list-bin als)
125
+ stat --format="%s" "$ALS_PATH"
126
+ time wasm-opt "$ALS_PATH" -Oz -o ~/out/als.wasm
127
+ stat --format="%s" ~/out/als.wasm
128
129
- name: Clean up native/wasm cabal logs
130
run: rm -rf ~/.cache/cabal/logs ~/.ghc-wasm/.cabal/logs
0 commit comments