Skip to content

Commit a76efa2

Browse files
authored
don't install sysroots on windows (#29)
not necessary, and windows tar hangs when extracting the sysroots.
1 parent 411d9fc commit a76efa2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ jobs:
180180
run: |
181181
gclient sync --no-history --shallow --revision .@${{ needs.resolve-version.outputs.engine-ref || needs.resolve-version.outputs.engine-hash }} -R -D
182182
183-
- name: Install linux arm sysroot
184-
if: steps.cache-lookup.outputs.cache-hit != 'true'
183+
- name: Install linux sysroots (macOS/Linux)
184+
if: steps.cache-lookup.outputs.cache-hit != 'true' && runner.os != 'Windows'
185185
working-directory: flutter/engine/src/build/linux/sysroot_scripts
186186
run: |
187187
./install-sysroot.py --arch=arm

dot-gclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://github.com/flutter/flutter.git",
55
"deps_file": "DEPS",
66
"custom_vars": {
7-
"download_linux_deps": True,
7+
"download_linux_deps": False,
88
"download_android_deps": False,
99
"download_esbuild": False,
1010
"download_fuchsia_deps": False,

0 commit comments

Comments
 (0)