Compare commits

...

2 Commits

Author SHA1 Message Date
kayomn 37bd0f10ac Fix CI being unable to find test
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
2022-10-03 23:05:43 +01:00
kayomn c91630d6da Run test binary over manually invoking zig test in VS Code settings 2022-10-03 23:04:57 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -6,4 +6,4 @@ steps:
image: euantorano/zig:0.9.1
commands:
- zig build test
- ./zig-cache/o/b57ef32c79a05339fbe4a8eb648ff6df/test main.zig
- $(find zig-cache -name test) main.zig

2
.vscode/tasks.json vendored
View File

@ -44,7 +44,7 @@
{
"label": "Test",
"type": "shell",
"command": "zig test src/main.zig",
"command": "$(find zig-cache -name test) src/main.zig",
"group": {
"kind": "test",
"isDefault": true