9 Commits

Author SHA1 Message Date
moritz 341e0b8032 Fix test coverage
Build ptprnt / build (push) Successful in 1m57s
2024-05-01 11:20:22 +02:00
moritz cc3ed5cf58 Cleanup
Build ptprnt / build (push) Has been cancelled
2024-05-01 11:19:06 +02:00
moritz d3ec844c18 Let's try the wildcard again
Build ptprnt / build (push) Successful in 1m15s
2024-05-01 11:17:06 +02:00
moritz 92df902fb9 Try older action version
Build ptprnt / build (push) Successful in 1m28s
2024-05-01 11:13:49 +02:00
moritz 6ec53d750f Seperate artifact upload
Build ptprnt / build (push) Failing after 1m17s
2024-05-01 11:09:29 +02:00
moritz 1065e38f5b Potentially fix dist path
Build ptprnt / build (push) Failing after 1m21s
2024-05-01 11:00:03 +02:00
moritz 3acefc8b07 Add dist package
Build ptprnt / build (push) Successful in 1m25s
2024-05-01 10:56:28 +02:00
moritz 6ce813f2b0 Touch up the output
Build ptprnt / build (push) Successful in 1m20s
2024-05-01 10:30:45 +02:00
moritz 3c672bd936 Add version information to the act runner
Build ptprnt / build (push) Successful in 1m23s
2024-05-01 10:26:36 +02:00
+14 -5
View File
@@ -6,13 +6,22 @@
"configurations": [
{
"name": "ptprnt_debug",
"type": "lldb",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/builddir/ptprnt",
"args": [
"-t Hello"
],
"args": ["-t Hello"],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
}