From ac1fe7d7abba32ef0c83ca1a22092bab9de5f171 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Thu, 13 Sep 2018 16:29:29 -0400 Subject: SML example import --- examples/sml/run.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 examples/sml/run.sh (limited to 'examples/sml/run.sh') diff --git a/examples/sml/run.sh b/examples/sml/run.sh new file mode 100755 index 0000000..fcaea5d --- /dev/null +++ b/examples/sml/run.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +abort () { + if [ "x$1" != "x" ]; then + echo "$1" + fi + printf "\n\n{\"scores\": {}}" + exit 0 +} + +[ -d handin ] || mkdir handin + +[ -f handin.tar ] || \ + abort "Submission is expected to be at handin.tar. This file does not exist!" + +tar -xf handin.tar -C handin || \ + abort "Failed to extract submission." + +ml-build sources.cm Main.main grader || \ + abort "Failed to compile autograder. Please contact course staff." + +sml @SMLload grader.* || \ + abort "SML autograder exited with error. Please contact course staff." -- cgit v1.2.3