From 56bf6d282bbf382dd6577e5db79643b8e70c1387 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sat, 2 May 2020 21:39:13 -0700 Subject: [PATCH] Stop building Rojo in rojo-test, since it doesn't work as intended --- perf-test.sh | 10 ++++++++++ rojo-test/Cargo.toml | 3 --- 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 perf-test.sh diff --git a/perf-test.sh b/perf-test.sh new file mode 100644 index 00000000..1dcd00e2 --- /dev/null +++ b/perf-test.sh @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +cargo build --release + +echo "Known good:" +time rojo build ../uiblox/test-place.project.json -o UIBlox.rbxlx + +echo "Current:" +time ./target/release/rojo build ../uiblox/test-place.project.json -o UIBlox.rbxlx \ No newline at end of file diff --git a/rojo-test/Cargo.toml b/rojo-test/Cargo.toml index 85dcb8cd..e73f2445 100644 --- a/rojo-test/Cargo.toml +++ b/rojo-test/Cargo.toml @@ -24,6 +24,3 @@ tempfile = "3.1.0" walkdir = "2.2.9" rojo-insta-ext = { path = "../rojo-insta-ext" } - -# We execute Rojo via std::process::Command, so depend on it so it's built! -rojo = { path = ".." }