Skip to content

Commit

Permalink
Explicitly set the entry point for multi file submissions that depend…
Browse files Browse the repository at this point in the history
… on file order

At least in CI this order is not guaranteed.
  • Loading branch information
nickygerritsen authored and meisterT committed Nov 10, 2024
1 parent 8f8f4c0 commit 97ebca1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions example_problems/hello/submissions.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 97ebca1

Please sign in to comment.