File tree 6 files changed +5
-24
lines changed
6 files changed +5
-24
lines changed Original file line number Diff line number Diff line change @@ -1051,10 +1051,10 @@ impl Step for Compiletest {
1051
1051
cmd. arg ( "--docck-python" ) . arg ( builder. python ( ) ) ;
1052
1052
1053
1053
if builder. config . build . ends_with ( "apple-darwin" ) {
1054
- // Force /usr/bin/python on macOS for LLDB tests because we're loading the
1054
+ // Force /usr/bin/python3 on macOS for LLDB tests because we're loading the
1055
1055
// LLDB plugin's compiled module which only works with the system python
1056
1056
// (namely not Homebrew-installed python)
1057
- cmd. arg ( "--lldb-python" ) . arg ( "/usr/bin/python " ) ;
1057
+ cmd. arg ( "--lldb-python" ) . arg ( "/usr/bin/python3 " ) ;
1058
1058
} else {
1059
1059
cmd. arg ( "--lldb-python" ) . arg ( builder. python ( ) ) ;
1060
1060
}
Original file line number Diff line number Diff line change 63
63
- job : macOS
64
64
timeoutInMinutes : 600
65
65
pool :
66
- vmImage : macos-10.13
66
+ vmImage : macos-10.15
67
67
steps :
68
68
- template : steps/run.yml
69
69
strategy :
Original file line number Diff line number Diff line change @@ -51,10 +51,6 @@ steps:
51
51
displayName : Install clang
52
52
condition : and(succeeded(), not(variables.SKIP_JOB))
53
53
54
- - bash : src/ci/scripts/switch-xcode.sh
55
- displayName : Switch to Xcode 9.3
56
- condition : and(succeeded(), not(variables.SKIP_JOB))
57
-
58
54
- bash : src/ci/scripts/install-wix.sh
59
55
displayName : Install wix
60
56
condition : and(succeeded(), not(variables.SKIP_JOB))
Original file line number Diff line number Diff line change 25
25
# - job: macOS
26
26
# timeoutInMinutes: 600
27
27
# pool:
28
- # vmImage: macos-10.13
28
+ # vmImage: macos-10.15
29
29
# steps:
30
30
# - template: steps/run.yml
31
31
# strategy:
Original file line number Diff line number Diff line change @@ -19,9 +19,7 @@ if isMacOS; then
19
19
# native clang is configured to use the correct path, but our custom one
20
20
# doesn't. This sets the SDKROOT environment variable to the SDK so that
21
21
# our own clang can figure out the correct include path on its own.
22
- if ! [[ -d " /usr/include" ]]; then
23
- ciCommandSetEnv SDKROOT " $( xcrun --sdk macosx --show-sdk-path) "
24
- fi
22
+ ciCommandSetEnv SDKROOT " $( xcrun --sdk macosx --show-sdk-path) "
25
23
26
24
# Configure `AR` specifically so rustbuild doesn't try to infer it as
27
25
# `clang-ar` by accident.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments