Unverified Commit be97fdbd authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Turn off reupload_on_changes for Cirrus caches (#51524)

parent dd2756c3
...@@ -72,12 +72,15 @@ task: ...@@ -72,12 +72,15 @@ task:
pub_cache: pub_cache:
folder: $HOME/.pub-cache folder: $HOME/.pub-cache
fingerprint_script: echo $OS; grep -r --include=pubspec.yaml 'PUBSPEC CHECKSUM' "$CIRRUS_WORKING_DIR" fingerprint_script: echo $OS; grep -r --include=pubspec.yaml 'PUBSPEC CHECKSUM' "$CIRRUS_WORKING_DIR"
reupload_on_changes: false
flutter_pkg_cache: flutter_pkg_cache:
folder: bin/cache/pkg folder: bin/cache/pkg
fingerprint_script: echo $OS; cat bin/internal/*.version fingerprint_script: echo $OS; cat bin/internal/*.version
reupload_on_changes: false
artifacts_cache: artifacts_cache:
folder: bin/cache/artifacts folder: bin/cache/artifacts
fingerprint_script: echo $OS; cat bin/internal/*.version fingerprint_script: echo $OS; cat bin/internal/*.version
reupload_on_changes: false
setup_script: setup_script:
- date - date
- git clean -xffd --exclude=bin/cache/ - git clean -xffd --exclude=bin/cache/
...@@ -314,12 +317,15 @@ task: ...@@ -314,12 +317,15 @@ task:
folder: $APPDATA\Pub\Cache folder: $APPDATA\Pub\Cache
fingerprint_script: fingerprint_script:
- ps: $Environment:OS; Get-ChildItem -Path "$Environment:CIRRUS_WORKING_DIR" pubspec.yaml -Recurse | Select-String -Pattern "PUBSPEC CHECKSUM" -SimpleMatch - ps: $Environment:OS; Get-ChildItem -Path "$Environment:CIRRUS_WORKING_DIR" pubspec.yaml -Recurse | Select-String -Pattern "PUBSPEC CHECKSUM" -SimpleMatch
reupload_on_changes: false
flutter_pkg_cache: flutter_pkg_cache:
folder: bin\cache\pkg folder: bin\cache\pkg
fingerprint_script: echo %OS% & type bin\internal\*.version fingerprint_script: echo %OS% & type bin\internal\*.version
reupload_on_changes: false
artifacts_cache: artifacts_cache:
folder: bin\cache\artifacts folder: bin\cache\artifacts
fingerprint_script: echo %OS% & type bin\internal\*.version fingerprint_script: echo %OS% & type bin\internal\*.version
reupload_on_changes: false
setup_script: setup_script:
- git clean -xffd --exclude=bin/cache/ # git wants forward slash path separators, even on Windows. - git clean -xffd --exclude=bin/cache/ # git wants forward slash path separators, even on Windows.
- git fetch origin - git fetch origin
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment