Skip to content

Commit

Permalink
Fix benchmark wasmer command
Browse files Browse the repository at this point in the history
The benchmark run has been failing since the latest release of wasmer.

https://github.com/anoma/juvix-nightly-builds/actions/runs/5746121923/job/15575622923

wasmer no longer supports the --disable-cache option and there's no
equivalent that I can find in the new CLI.
  • Loading branch information
paulcadman committed Aug 3, 2023
1 parent 22de9d0 commit da28d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/Variants.hs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ defaultExt :: [String]
defaultExt = [".exe"]

runWasm :: Path Abs File -> IO ()
runWasm p = void (readProcess "wasmer" [toFilePath p, "--disable-cache"] "")
runWasm p = void (readProcess "wasmer" [toFilePath p] "")

runExe :: Path Abs File -> IO ()
runExe p = void (readProcess (toFilePath p) [] "")
Expand Down

0 comments on commit da28d12

Please sign in to comment.