Skip to content

Commit 53c5501

Browse files
committed
arm64: remove block on non-full flavors of SDK
In an earlier commit, we told the logic that invokes create-sdk-artifact to pass the architecture rather than the bitness to it, unlocking arm64 support. Let's remove the logic that actively blocked arm64 suport for all non-full flavors. Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
1 parent 7e1ade6 commit 53c5501

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Git for Windows SDK comes in variants targeting `x86_64` (AKA "64-bit"), `i686`
6060
architecture: i686
6161
```
6262

63-
Please note that only the `build-installers` and the `full` flavors are available for `i686`. For `aarch64`, only the `full` flavor is available.
63+
Please note that only the `build-installers` and the `full` flavors are available for `i686`.
6464

6565
### Verbosity
6666

main.ts

-6
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ async function run(): Promise<void> {
4040
return
4141
}
4242

43-
if (architecture === 'aarch64' && flavor !== 'full') {
44-
throw new Error(
45-
'On aarch64, only the "full" flavor is supported at this time.'
46-
)
47-
}
48-
4943
const githubToken = core.getInput('github-token')
5044
const verbose = core.getInput('verbose')
5145
const msysMode = core.getInput('msys') === 'true'

0 commit comments

Comments
 (0)