Revert "Remove resolver=2 from Cargo.toml and add it to the Windows build" (#27011)

Revert "Remove resolver=2 from Cargo.toml and add it to the Windows build (#26706)"

This reverts commit 2f6f5b11da.
This commit is contained in:
Ryo Onodera 2022-08-09 17:58:32 +09:00 committed by GitHub
parent 4d58655ef5
commit ecda3bec01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View File

@ -91,3 +91,6 @@ members = [
exclude = [
"programs/bpf",
]
# This prevents a Travis CI error when building for Windows.
resolver = "2"

View File

@ -58,11 +58,6 @@ windows)
git config core.symlinks true
find . -type l -delete
git reset --hard
# The Windows build fails without resolver = "2", but including it in Cargo.toml causes
# other problems (see PR #26555 and Issue #22603). This adds resolver = "2" to
# Cargo.toml before building. Since the build environment does not persist the changes
# are discarded after the build and do not interfere with non-Windows builds.
echo 'resolver = "2"' >> Cargo.toml
)
;;
*)