|
There are two types of SASL tasks for Windows:
debug-compile-sasl-xyz
debug-compile-sspi-xyz
However, the "sasl" tasks default to building with SSPI (not Cyrus). Based on our cmake logic, defaulting to SSPI seems intended when ENABLE_SASL=AUTO on Windows. But this means we aren't testing Cyrus SASL on evergreen. Let's consider making these changes:
- Rename those "debug-compile-sasl-xyz" tasks to be "debug-compile-cyrus-xyz" and have them build with ENABLE_SASL=Cyrus, and rename the corresponding tests tasks. This way, we're not relying on the value of AUTO. This would be a rename for tasks on all variants, not just Windows.
- Perhaps leave one "debug-compile-sasl-xyz" to check that configuring with ENABLE_SASL=AUTO works (though tests need not use it) since it'll default to either Cyrus or SSPI, both of which should be tested independantly.
|