Point Flutter defaults at GitHub fork
ci / 📄 License Check (push) Has been cancelled
ci / ✅ Semantic Pull Request (push) Has been cancelled
ci / 🔤 Check Spelling (push) Has been cancelled
ci / 👀 Detect Changes (push) Has been cancelled
Shorebird CI / changes (push) Has been cancelled
Shorebird CI / CSpell (push) Has been cancelled
ci / 🎯 Build ${{ matrix.package }} (${{ matrix.os }}) (push) Has been cancelled
ci / 🔎 Verify ${{ matrix.package }} (push) Has been cancelled
ci / ci (push) Has been cancelled
Shorebird CI / artifact_proxy (push) Has been cancelled
Shorebird CI / dex (push) Has been cancelled
Shorebird CI / discord_gcp_alerts (push) Has been cancelled
Shorebird CI / flutter_version_resolver (push) Has been cancelled
Shorebird CI / jwt (push) Has been cancelled
Shorebird CI / scoped_deps (push) Has been cancelled
Shorebird CI / shorebird_build_trace (push) Has been cancelled
Shorebird CI / shorebird_ci (push) Has been cancelled
Shorebird CI / shorebird_cli (push) Has been cancelled
Shorebird CI / shorebird_code_push_client (push) Has been cancelled
Shorebird CI / shorebird_code_push_protocol (push) Has been cancelled
Shorebird CI / shorebird_redis_client (push) Has been cancelled
Shorebird CI / stripe_api (push) Has been cancelled
Shorebird CI / required (push) Has been cancelled
ci / 🎯 Build ${{ matrix.package }} (push) Has been cancelled

This commit is contained in:
Tony
2026-06-26 01:40:20 +08:00
parent 07a654e771
commit cdd8cefb27
6 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -19,8 +19,8 @@ The combined workspace provides these open replacements:
| Artifact mirror/proxy | `packages/artifact_proxy` | | Artifact mirror/proxy | `packages/artifact_proxy` |
| Runtime updater library | `../updater/library`, linked into the Flutter engine by `../scripts/sync_open_sources.sh` | | Runtime updater library | `../updater/library`, linked into the Flutter engine by `../scripts/sync_open_sources.sh` |
| Patch artifact generator | `../updater/patch` and `packages/open_aot_patch_tools` | | Patch artifact generator | `../updater/patch` and `packages/open_aot_patch_tools` |
| Flutter engine and Flutter tool defaults | `../flutter`, linked to `../dart-sdk-new` and `../updater` | | Flutter engine and Flutter tool defaults | `../flutter`, linked to `../dart-sdk` and `../updater` |
| Dart VM patch runtime | `../dart-sdk-new` | | Dart VM patch runtime | `../dart-sdk` |
Run source linking from the workspace root: Run source linking from the workspace root:
@@ -31,7 +31,7 @@ Run source linking from the workspace root:
The script links: The script links:
```text ```text
flutter/engine/src/flutter/third_party/dart -> dart-sdk-new flutter/engine/src/flutter/third_party/dart -> dart-sdk
flutter/engine/src/flutter/third_party/updater -> updater flutter/engine/src/flutter/third_party/updater -> updater
``` ```
+1 -1
View File
@@ -15,7 +15,7 @@ $flutterPath = [IO.Path]::Combine($shorebirdCacheDir, "flutter", $flutterVersion
$flutter = [IO.Path]::Combine($shorebirdCacheDir, "flutter", $flutterVersion, "bin", "flutter.bat") $flutter = [IO.Path]::Combine($shorebirdCacheDir, "flutter", $flutterVersion, "bin", "flutter.bat")
$shorebirdScript = [IO.Path]::Combine($shorebirdCliDir, "bin", "shorebird.dart") $shorebirdScript = [IO.Path]::Combine($shorebirdCliDir, "bin", "shorebird.dart")
$dart = [IO.Path]::Combine($flutterPath, "bin", "cache", "dart-sdk", "bin", "dart.exe") $dart = [IO.Path]::Combine($flutterPath, "bin", "cache", "dart-sdk", "bin", "dart.exe")
$defaultFlutterGitUrl = "https://git.tonycloud.org/flutter/flutter.git" $defaultFlutterGitUrl = "https://github.com/tony-cloud/flutter.git"
$defaultFlutterStorageBaseUrl = "http://localhost:8080/download.flutter.io" $defaultFlutterStorageBaseUrl = "http://localhost:8080/download.flutter.io"
# Executes $command and redirects as much output to $null as possible. # Executes $command and redirects as much output to $null as possible.
@@ -4,7 +4,7 @@ This workspace builds against the open Flutter fork configured in
`SHOREBIRD_FLUTTER_GIT_URL`, which defaults to: `SHOREBIRD_FLUTTER_GIT_URL`, which defaults to:
```text ```text
https://git.tonycloud.org/flutter/flutter.git https://github.com/tony-cloud/flutter.git
``` ```
Use `shorebird flutter versions list` to inspect versions known to the local Use `shorebird flutter versions list` to inspect versions known to the local
@@ -101,7 +101,7 @@ and writes the file that the engine patch cache can map before isolate startup.
The host proof app is `testapps/license_flavor_patch_test`. Run: The host proof app is `testapps/license_flavor_patch_test`. Run:
```powershell ```powershell
dart-sdk-new\tools\sdks\dart-sdk\bin\dart.exe testapps\license_flavor_patch_test\tool\verify_aot_patch.dart dart-sdk\tools\sdks\dart-sdk\bin\dart.exe testapps\license_flavor_patch_test\tool\verify_aot_patch.dart
``` ```
It compiles a `free` base AOT snapshot and a `pro` patch snapshot, reuses the It compiles a `free` base AOT snapshot and a `pro` patch snapshot, reuses the
@@ -32,7 +32,7 @@ class ShorebirdFlutter {
/// The Shorebird Flutter fork git URL. /// The Shorebird Flutter fork git URL.
static const String defaultFlutterGitUrl = static const String defaultFlutterGitUrl =
'https://git.tonycloud.org/flutter/flutter.git'; 'https://github.com/tony-cloud/flutter.git';
/// The Flutter fork git URL used when installing vended Flutter revisions. /// The Flutter fork git URL used when installing vended Flutter revisions.
String get flutterGitUrl { String get flutterGitUrl {
+1 -1
View File
@@ -11,7 +11,7 @@ unset CDPATH
# Either clones or pulls the configured Flutter repository, depending on # Either clones or pulls the configured Flutter repository, depending on
# whether FLUTTER_PATH exists. # whether FLUTTER_PATH exists.
function update_flutter { function update_flutter {
local flutter_git_url="${SHOREBIRD_FLUTTER_GIT_URL:-https://git.tonycloud.org/flutter/flutter.git}" local flutter_git_url="${SHOREBIRD_FLUTTER_GIT_URL:-https://github.com/tony-cloud/flutter.git}"
local flutter_storage_base_url="${SHOREBIRD_FLUTTER_STORAGE_BASE_URL:-${FLUTTER_STORAGE_BASE_URL:-http://localhost:8080/download.flutter.io}}" local flutter_storage_base_url="${SHOREBIRD_FLUTTER_STORAGE_BASE_URL:-${FLUTTER_STORAGE_BASE_URL:-http://localhost:8080/download.flutter.io}}"
if [[ -d "$FLUTTER_PATH" ]]; then if [[ -d "$FLUTTER_PATH" ]]; then