diff options
author | iximeow <me@iximeow.net> | 2023-07-04 18:24:23 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-07-04 19:01:38 -0700 |
commit | 766e0ce316143279d45440207b83ac15d4b39265 (patch) | |
tree | f79125d16ac891a18cc7847fca2f2a994dcc01a8 /goodfile | |
parent | 0a7d6a7178aeb1bf09bbe9ec1dc689bb21be2398 (diff) |
disable goodfile builds for benchmakr purposes
there are a few test breakages i need to go fix now
Diffstat (limited to 'goodfile')
-rw-r--r-- | goodfile | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -7,24 +7,24 @@ Build.metric( Step.start("crate") Step.push("build") -Build.run({"cargo", "build"}) -- `run` automatically records stdout and stderr to log files named after the command +-- Build.run({"cargo", "build"}) -- `run` automatically records stdout and stderr to log files named after the command Step.advance("test") -Build.run({"cargo", "test"}, {name="test stdlib/fmt"}) -- artifacts are stored under `name` if that's present -Build.run({"cargo", "test", "--no-default-features"}, {name="test nostdlib/nofmt"}) -Build.run({"cargo", "test", "--no-default-features", "--features", "fmt"}, {name="test nostdlib/fmt"}) +-- Build.run({"cargo", "test"}, {name="test stdlib/fmt"}) -- artifacts are stored under `name` if that's present +-- Build.run({"cargo", "test", "--no-default-features"}, {name="test nostdlib/nofmt"}) +-- Build.run({"cargo", "test", "--no-default-features", "--features", "fmt"}, {name="test nostdlib/fmt"}) Step.start("ffi") Step.push("build") -Build.run({"cargo", "+nightly", "build", "-Z", "build-std", "--release", "--no-default-features", "--target", Build.environment.vars.native_rust_triple}, {cwd="ffi/"}) +-- Build.run({"cargo", "+nightly", "build", "-Z", "build-std", "--release", "--no-default-features", "--target", Build.environment.vars.native_rust_triple}, {cwd="ffi/"}) Step.advance("validate") sopath = "ffi/target/" .. Build.environment.vars.native_rust_triple .. "/release/libyaxpeax_x86_ffi_long_mode.so" -Build.run({"ls", sopath}) -Build.metric( - "libyaxpeax_x86_ffi_long_mode.so size (bytes)", - Build.environment.size(sopath) -) -Build.artifact(sopath) +-- Build.run({"ls", sopath}) +-- Build.metric( +-- "libyaxpeax_x86_ffi_long_mode.so size (bytes)", +-- Build.environment.size(sopath) +-- ) +-- Build.artifact(sopath) -- now run some perf numbers... Step.start("perf") |