77 lines
3.0 KiB
JSON
77 lines
3.0 KiB
JSON
[
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
// ----- Odin Tests ------------------------
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
{
|
|
"label": "Test many_bits",
|
|
"command": "odin test many_bits -out=out/debug/test_many_bits",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Test ring",
|
|
"command": "odin test ring -out=out/debug/test_ring",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Test levsort",
|
|
"command": "odin test levsort -out=out/debug/test_levsort",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Test levsync",
|
|
"command": "odin test levsync -out=out/debug/test_levsync",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Test levmath",
|
|
"command": "odin test levmath -out=out/debug/test_levmath",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Test phased_executor",
|
|
"command": "odin test phased_executor -out=out/debug/test_phased_executor",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Test all",
|
|
"command": "odin test many_bits -out=out/debug/test_many_bits && odin test ring -out=out/debug/test_ring && odin test levsort -out=out/debug/test_levsort && odin test levsync -out=out/debug/test_levsync && odin test levmath -out=out/debug/test_levmath && odin test phased_executor -out=out/debug/test_phased_executor",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
// ----- Examples ------------------------
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
{
|
|
"label": "Run lmdb example",
|
|
"command": "odin run vendor/lmdb/examples -debug -out=out/debug/lmdb-examples",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Run draw hellope-clay example",
|
|
"command": "odin run draw/examples -debug -out=out/debug/draw-examples -- hellope-clay",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Run draw hellope-shapes example",
|
|
"command": "odin run draw/examples -debug -out=out/debug/draw-examples -- hellope-shapes",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Run draw hellope-text example",
|
|
"command": "odin run draw/examples -debug -out=out/debug/draw-examples -- hellope-text",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Run draw hellope-custom example",
|
|
"command": "odin run draw/examples -debug -out=out/debug/draw-examples -- hellope-custom",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
// ----- Other ------------------------
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
{
|
|
"label": "Run debug",
|
|
"command": "odin run debug -debug -out=out/debug/debug",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
]
|