File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 20
20
21
21
jobs :
22
22
build :
23
- # Forks don't have access to Windows on Arm runners. Skip those:
24
- if : inputs.arch != 'arm64' || github.repository_owner == 'python'
25
23
name : installer for ${{ inputs.arch }}
26
24
runs-on : ${{ inputs.os }}
27
25
timeout-minutes : 60
33
31
with :
34
32
persist-credentials : false
35
33
- name : Build CPython installer
34
+ # Forks don't have access to Windows on Arm runners. Skip those:
35
+ if : inputs.arch != 'arm64' || github.repository_owner == 'python'
36
36
run : ./Tools/msi/build.bat --doc -"${ARCH}"
37
37
shell : bash
Original file line number Diff line number Diff line change 24
24
25
25
jobs :
26
26
build :
27
- # Forks don't have access to Windows on Arm runners. Skip those:
28
- if : inputs.arch != 'arm64' || github.repository_owner == 'python'
29
27
name : Build and test (${{ inputs.arch }})
30
28
runs-on : ${{ inputs.os }}
31
29
timeout-minutes : 60
@@ -39,15 +37,21 @@ jobs:
39
37
if : inputs.arch != 'Win32'
40
38
run : echo "::add-matcher::.github/problem-matchers/msvc.json"
41
39
- name : Build CPython
40
+ # Forks don't have access to Windows on Arm runners. Skip those:
41
+ if : inputs.arch != 'arm64' || github.repository_owner == 'python'
42
42
run : >-
43
43
.\\PCbuild\\build.bat
44
44
-e -d -v
45
45
-p "${ARCH}"
46
46
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
47
47
shell : bash
48
48
- name : Display build info
49
+ # Forks don't have access to Windows on Arm runners. Skip those:
50
+ if : inputs.arch != 'arm64' || github.repository_owner == 'python'
49
51
run : .\\python.bat -m test.pythoninfo
50
52
- name : Tests
53
+ # Forks don't have access to Windows on Arm runners. Skip those:
54
+ if : inputs.arch != 'arm64' || github.repository_owner == 'python'
51
55
run : >-
52
56
.\\PCbuild\\rt.bat
53
57
-p "${ARCH}"
You can’t perform that action at this time.
0 commit comments