1
1
mirror of https://github.com/anoma/juvix.git synced 2024-07-07 04:36:19 +03:00

Fix benchmark runtime variant (#2740)

This PR fixes the broken benchmarks build:


https://github.com/anoma/juvix-nightly-builds/actions/runs/8731798856/job/23958282008

Target `wasm32-wasi` has been renamed to `wasi`
This commit is contained in:
Paul Cadman 2024-04-22 11:09:27 +01:00 committed by GitHub
parent 0e8ccb7db2
commit ca14c3cfcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,7 +198,7 @@ runtimeWasm =
_variantColor = getVariantColor RuntimeWasm,
_variantRun = runWasm,
_variantBuild = \args ->
command_ [] "juvix" (runtimeCommon ++ ["--target=wasm32-wasi"] ++ commonOptions args ext)
command_ [] "juvix" (runtimeCommon ++ ["--target=wasi"] ++ commonOptions args ext)
}
where
ext :: [String]