mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Add pub cache, artifacts, pkgs to Cirrus cache (#20080)
This adds: - pub's cache to the Cirrus cache. It caches based on the checksums in the pubspec (although pub has things in versioned folders, this'll prevent the cache just getting bigger over time). - bin/cache/pkg. I think this only includes sky_engine. It caches based on the engine checksum. - bin/cache/artifacts. This includes engine, gradle_wrapper, material_fonts. Also caches based on the engine checksum.
This commit is contained in:
parent
8eb5cb7dc0
commit
07e93b385c
28
.cirrus.yml
28
.cirrus.yml
@ -7,6 +7,15 @@ task:
|
|||||||
PATH: "$CIRRUS_WORKING_DIR/bin:$CIRRUS_WORKING_DIR/bin/cache/dart-sdk/bin:$PATH"
|
PATH: "$CIRRUS_WORKING_DIR/bin:$CIRRUS_WORKING_DIR/bin/cache/dart-sdk/bin:$PATH"
|
||||||
|
|
||||||
git_fetch_script: git fetch origin
|
git_fetch_script: git fetch origin
|
||||||
|
pub_cache:
|
||||||
|
folder: $HOME/.pub-cache
|
||||||
|
fingerprint_script: echo $OS; grep -r --include=pubspec.yaml 'PUBSPEC CHECKSUM' "$CIRRUS_WORKING_DIR"
|
||||||
|
flutter_pkg_cache:
|
||||||
|
folder: bin/cache/pkg
|
||||||
|
fingerprint_script: echo $OS; cat bin/internal/engine.version
|
||||||
|
artifacts_cache:
|
||||||
|
folder: bin/cache/artifacts
|
||||||
|
fingerprint_script: echo $OS; cat bin/internal/engine.version
|
||||||
setup_script: |
|
setup_script: |
|
||||||
echo "SDK directory is: $PWD"
|
echo "SDK directory is: $PWD"
|
||||||
./bin/flutter --version
|
./bin/flutter --version
|
||||||
@ -53,6 +62,16 @@ task:
|
|||||||
env:
|
env:
|
||||||
CIRRUS_WORKING_DIR: "C:\\Windows\\Temp\\flutter sdk"
|
CIRRUS_WORKING_DIR: "C:\\Windows\\Temp\\flutter sdk"
|
||||||
git_fetch_script: git fetch origin
|
git_fetch_script: git fetch origin
|
||||||
|
pub_cache:
|
||||||
|
folder: $APPDATA\Pub\Cache
|
||||||
|
fingerprint_script:
|
||||||
|
- ps: $Env:OS; Get-ChildItem -Path "$Env:CIRRUS_WORKING_DIR" pubspec.yaml -Recurse | Select-String -Pattern "PUBSPEC CHECKSUM" -SimpleMatch
|
||||||
|
flutter_pkg_cache:
|
||||||
|
folder: bin\cache\pkg
|
||||||
|
fingerprint_script: echo %OS% & type bin\internal\engine.version
|
||||||
|
artifacts_cache:
|
||||||
|
folder: bin\cache\artifacts
|
||||||
|
fingerprint_script: echo %OS% & type bin\internal\engine.version
|
||||||
setup_script:
|
setup_script:
|
||||||
- bin\flutter.bat config --no-analytics
|
- bin\flutter.bat config --no-analytics
|
||||||
- bin\flutter.bat update-packages
|
- bin\flutter.bat update-packages
|
||||||
@ -75,6 +94,15 @@ task:
|
|||||||
env:
|
env:
|
||||||
CIRRUS_WORKING_DIR: "/tmp/flutter sdk"
|
CIRRUS_WORKING_DIR: "/tmp/flutter sdk"
|
||||||
git_fetch_script: git fetch origin
|
git_fetch_script: git fetch origin
|
||||||
|
pub_cache:
|
||||||
|
folder: $HOME/.pub-cache
|
||||||
|
fingerprint_script: echo $OS; grep -r --include=pubspec.yaml 'PUBSPEC CHECKSUM' "$CIRRUS_WORKING_DIR"
|
||||||
|
flutter_pkg_cache:
|
||||||
|
folder: bin/cache/pkg
|
||||||
|
fingerprint_script: echo $OS; cat bin/internal/engine.version
|
||||||
|
artifacts_cache:
|
||||||
|
folder: bin/cache/artifacts
|
||||||
|
fingerprint_script: echo $OS; cat bin/internal/engine.version
|
||||||
setup_script:
|
setup_script:
|
||||||
- bin/flutter config --no-analytics
|
- bin/flutter config --no-analytics
|
||||||
- bin/flutter update-packages
|
- bin/flutter update-packages
|
||||||
|
Loading…
Reference in New Issue
Block a user