From 97ebca104e1177131c411c16e8250df6f2c29177 Mon Sep 17 00:00:00 2001 From: Nicky Gerritsen Date: Wed, 6 Nov 2024 19:58:01 +0100 Subject: [PATCH] Explicitly set the entry point for multi file submissions that depend on file order At least in CI this order is not guaranteed. --- example_problems/hello/submissions.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 example_problems/hello/submissions.json diff --git a/example_problems/hello/submissions.json b/example_problems/hello/submissions.json new file mode 100644 index 0000000000..4baf04beb8 --- /dev/null +++ b/example_problems/hello/submissions.json @@ -0,0 +1,17 @@ +{ + "submissions/accepted/multifile-js/": { + "entry_point": "main.mjs" + }, + "submissions/accepted/multifile-js-2/": { + "entry_point": "hello.js" + }, + "submissions/accepted/multifile-py/": { + "entry_point": "main.py" + }, + "submissions/accepted/multifile-py-2/": { + "entry_point": "main.py" + }, + "submissions/accepted/multifile-sh/": { + "entry_point": "main.sh" + } +}