ci: switch macOS builders to 10.15

This commit is contained in:
Pietro Albini 2020-02-05 15:47:01 +01:00
parent 75b98fbe77
commit 79c166ef73
No known key found for this signature in database
GPG key ID: 3E06ABE80BAAF19C
6 changed files with 5 additions and 24 deletions

View file

@ -1051,10 +1051,10 @@ impl Step for Compiletest {
cmd.arg("--docck-python").arg(builder.python());
if builder.config.build.ends_with("apple-darwin") {
// Force /usr/bin/python on macOS for LLDB tests because we're loading the
// Force /usr/bin/python3 on macOS for LLDB tests because we're loading the
// LLDB plugin's compiled module which only works with the system python
// (namely not Homebrew-installed python)
cmd.arg("--lldb-python").arg("/usr/bin/python");
cmd.arg("--lldb-python").arg("/usr/bin/python3");
} else {
cmd.arg("--lldb-python").arg(builder.python());
}