Skip to content

Commit

Permalink
WIP: enabled CI test using llvmpipe.
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe2933 committed Aug 31, 2024
1 parent a85c518 commit baa1887
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions .github/workflows/CMakeUserPresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,27 @@
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "clang-test",
"inherits": "clang",
"cacheVariables": {
"VKU_ENABLE_TEST": "ON"
}
},
{
"name": "clang-libcxx-test",
"inherits": "clang-libcxx",
"cacheVariables": {
"VKU_ENABLE_TEST": "ON"
}
},
{
"name": "msvc-test",
"inherits": "msvc",
"cacheVariables": {
"VKU_ENABLE_TEST": "ON"
}
}
],
"buildPresets": [
Expand All @@ -49,28 +70,17 @@
}
],
"testPresets": [
{
"name": "ci-test",
"hidden": true,
"inherits": "vcpkg",
"cacheVariables": {
"VKU_ENABLE_TEST": "ON"
}
},
{
"name": "clang",
"inherits": "ci-test",
"configurePreset": "clang"
"configurePreset": "clang-test"
},
{
"name": "clang-libcxx",
"inherits": "ci-test",
"configurePreset": "clang-libcxx"
"configurePreset": "clang-libcxx-test"
},
{
"name": "msvc",
"inherits": "ci-test",
"configurePreset": "msvc"
"configurePreset": "msvc-test"
}
]
}

0 comments on commit baa1887

Please sign in to comment.