9 Commits

Author SHA1 Message Date
341e0b8032 Fix test coverage
All checks were successful
Build ptprnt / build (push) Successful in 1m57s
2024-05-01 11:20:22 +02:00
cc3ed5cf58 Cleanup
Some checks failed
Build ptprnt / build (push) Has been cancelled
2024-05-01 11:19:06 +02:00
d3ec844c18 Let's try the wildcard again
All checks were successful
Build ptprnt / build (push) Successful in 1m15s
2024-05-01 11:17:06 +02:00
92df902fb9 Try older action version
All checks were successful
Build ptprnt / build (push) Successful in 1m28s
2024-05-01 11:13:49 +02:00
6ec53d750f Seperate artifact upload
Some checks failed
Build ptprnt / build (push) Failing after 1m17s
2024-05-01 11:09:29 +02:00
1065e38f5b Potentially fix dist path
Some checks failed
Build ptprnt / build (push) Failing after 1m21s
2024-05-01 11:00:03 +02:00
3acefc8b07 Add dist package
All checks were successful
Build ptprnt / build (push) Successful in 1m25s
2024-05-01 10:56:28 +02:00
6ce813f2b0 Touch up the output
All checks were successful
Build ptprnt / build (push) Successful in 1m20s
2024-05-01 10:30:45 +02:00
3c672bd936 Add version information to the act runner
All checks were successful
Build ptprnt / build (push) Successful in 1m23s
2024-05-01 10:26:36 +02:00

19
.vscode/launch.json vendored
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
}
]
}
]
}
}