Get ready to deploy DriverRank.jl as part of the scouting app
This patch almost sets us up to run the DriverRank.jl script on the
scouting server. There are a few pieces still missing though:
- The scouting server actually needs to call into the new
`driver_ranking.GenerateFullDriverRanking() function.
- We need to get Julia working on the scouting server.
- The `DriverRank.jl` script needs to parse command line arguments to
specify input and output CSV files.
All that work will be done in future patches. This patch here just
sets up the wrapper logic for Go code to communicate with the Julia
code via CSV files.
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I327a359a089993670b2526ac304339e33c1ee6ab
diff --git a/scouting/DriverRank/BUILD b/scouting/DriverRank/BUILD
new file mode 100644
index 0000000..e82fbfb
--- /dev/null
+++ b/scouting/DriverRank/BUILD
@@ -0,0 +1,7 @@
+filegroup(
+ name = "driver_rank_script",
+ srcs = [
+ "src/DriverRank.jl",
+ ],
+ visibility = ["//scouting:__subpackages__"],
+)