Skip to content

[Bugfix:Autograding] revise docker images #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/02_simple_cpp/config/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"autograding_method": "docker",
"container_options": {
"container_image": "submittyrpi/csci1200:default"
"container_image": "submitty/clang:latest"
},

// For compiled languages, typically two testcases are used to allow points
Expand Down
6 changes: 3 additions & 3 deletions examples/05_cpp_static_analysis/config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

"autograding_method": "docker",
"container_options": {
"container_image": "submittyrpi/csci1200:default"
"container_image": "submitty/autograding-default:latest"
},

// Static analysis can also be performed upon C++ code.
Expand All @@ -16,8 +16,8 @@
{

"title" : "Check for goto and auto",
"command" : [ "submitty_count token -l c Goto *.cpp",
"submitty_count token -l c Auto *.cpp" ],
"command" : [ "submitty_count_ts -l cpp node auto *.cpp",
"submitty_count_ts -l cpp node auto *.cpp" ],
"points" : 2,
"validation" : [
{
Expand Down
14 changes: 2 additions & 12 deletions examples/08_memory_debugging/config/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"autograding_method": "docker",
"container_options": {
"container_image": "submittyrpi/csci1200:default"
"container_image": "submitty/autograding-default:latest"
},

"testcases" : [
Expand All @@ -11,17 +11,7 @@
{
"type" : "Compilation",
"title" : "C++ - Compilation (for Dr Memory)",

// ORIGINAL
//"command" : "clang++ -g -Wall -o a.out *.cpp",

// TEMPORARY WORKAROUND
"command" : "clang++ -g -gdwarf-4 -Wall -o a.out *.cpp",
// NOTE: Compiling with the -gdwarf-4 option is required with g++ 11+
// so that DrMemory can print source code line numbers with.
// See also:
// https://github.com/DynamoRIO/drmemory/issues/2485

"command" : "clang++ -g -Wall -o a.out *.cpp",
"executable_name" : "a.out",
"points" : 2
},
Expand Down