File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 92
92
arch : AMD64
93
93
- os : windows-latest
94
94
arch : x86
95
+ - os : windows-11-arm
96
+ arch : ARM64
95
97
steps :
96
98
- uses : actions/checkout@v4
97
99
- uses : actions/setup-python@v5
Original file line number Diff line number Diff line change 1
1
{
2
- "urls" : [" https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1-1 /openssl-{platform}.tar.gz" ]
2
+ "urls" : [" https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1-2 /openssl-{platform}.tar.gz" ]
3
3
}
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ def get_platform():
23
23
machine = os .environ ["ARCHFLAGS" ].split ()[1 ]
24
24
return f"macosx_{ machine } "
25
25
elif system == "Windows" :
26
- if struct .calcsize ("P" ) * 8 == 64 :
26
+ if machine == "ARM64" :
27
+ return "win_arm64"
28
+ elif struct .calcsize ("P" ) * 8 == 64 :
27
29
return "win_amd64"
28
30
else :
29
31
return "win32"
You can’t perform that action at this time.
0 commit comments