Skip to content

Commit 454ddad

Browse files
committed
Stop building 32-bit packages for macOS
32-bit Dart SDKs for macOS no longer exist, so the deploy script attempting to download them was causing the entire GitHub release to fail.
1 parent 81140a0 commit 454ddad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pubspec.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ packages:
8686
source: hosted
8787
version: "0.13.9"
8888
crypto:
89-
dependency: transitive
89+
dependency: "direct dev"
9090
description:
9191
name: crypto
9292
url: "https://pub.dartlang.org"
@@ -149,7 +149,7 @@ packages:
149149
source: hosted
150150
version: "0.3.4"
151151
js:
152-
dependency: "direct dev"
152+
dependency: "direct main"
153153
description:
154154
name: js
155155
url: "https://pub.dartlang.org"

tool/grind/standalone.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ package() async {
5151
var client = http.Client();
5252
await Future.wait(["linux", "macos", "windows"].expand((os) => [
5353
_buildPackage(client, os, x64: true),
54-
_buildPackage(client, os, x64: false)
54+
if (os != "macos") _buildPackage(client, os, x64: false)
5555
]));
5656
client.close();
5757
}

0 commit comments

Comments
 (0)