build: remove out cache (#36355)
This commit is contained in:
parent
d57d9f71df
commit
2cc24542f5
1 changed files with 0 additions and 43 deletions
|
@ -894,14 +894,6 @@ step-maybe-restore-git-cache: &step-maybe-restore-git-cache
|
||||||
- v1-git-cache-{{ checksum "src/electron/.circle-sync-done" }}
|
- v1-git-cache-{{ checksum "src/electron/.circle-sync-done" }}
|
||||||
name: Conditionally restoring git cache
|
name: Conditionally restoring git cache
|
||||||
|
|
||||||
step-restore-out-cache: &step-restore-out-cache
|
|
||||||
restore_cache:
|
|
||||||
paths:
|
|
||||||
- ./src/out/Default
|
|
||||||
keys:
|
|
||||||
- v10-out-cache-{{ checksum "src/electron/.depshash" }}-{{ checksum "src/electron/.depshash-target" }}
|
|
||||||
name: Restoring out cache
|
|
||||||
|
|
||||||
step-set-git-cache-path: &step-set-git-cache-path
|
step-set-git-cache-path: &step-set-git-cache-path
|
||||||
run:
|
run:
|
||||||
name: Set GIT_CACHE_PATH to make gclient to use the cache
|
name: Set GIT_CACHE_PATH to make gclient to use the cache
|
||||||
|
@ -919,13 +911,6 @@ step-save-git-cache: &step-save-git-cache
|
||||||
key: v1-git-cache-{{ checksum "src/electron/.circle-sync-done" }}-{{ checksum "src/electron/DEPS" }}
|
key: v1-git-cache-{{ checksum "src/electron/.circle-sync-done" }}-{{ checksum "src/electron/DEPS" }}
|
||||||
name: Persisting git cache
|
name: Persisting git cache
|
||||||
|
|
||||||
step-save-out-cache: &step-save-out-cache
|
|
||||||
save_cache:
|
|
||||||
paths:
|
|
||||||
- ./src/out/Default
|
|
||||||
key: v10-out-cache-{{ checksum "src/electron/.depshash" }}-{{ checksum "src/electron/.depshash-target" }}
|
|
||||||
name: Persisting out cache
|
|
||||||
|
|
||||||
step-run-electron-only-hooks: &step-run-electron-only-hooks
|
step-run-electron-only-hooks: &step-run-electron-only-hooks
|
||||||
run:
|
run:
|
||||||
name: Run Electron Only Hooks
|
name: Run Electron Only Hooks
|
||||||
|
@ -1299,9 +1284,6 @@ commands:
|
||||||
build:
|
build:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
use-out-cache:
|
|
||||||
type: boolean
|
|
||||||
default: true
|
|
||||||
restore-src-cache:
|
restore-src-cache:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
|
@ -1424,10 +1406,6 @@ commands:
|
||||||
- *step-delete-git-directories
|
- *step-delete-git-directories
|
||||||
|
|
||||||
# Electron app
|
# Electron app
|
||||||
- when:
|
|
||||||
condition: << parameters.use-out-cache >>
|
|
||||||
steps:
|
|
||||||
- *step-restore-out-cache
|
|
||||||
- *step-gn-gen-default
|
- *step-gn-gen-default
|
||||||
- *step-electron-build
|
- *step-electron-build
|
||||||
- *step-maybe-electron-dist-strip
|
- *step-maybe-electron-dist-strip
|
||||||
|
@ -1470,22 +1448,6 @@ commands:
|
||||||
condition: << parameters.build >>
|
condition: << parameters.build >>
|
||||||
steps:
|
steps:
|
||||||
- move_and_store_all_artifacts
|
- move_and_store_all_artifacts
|
||||||
- run:
|
|
||||||
name: Remove the big things on macOS, this seems to be better on average
|
|
||||||
command: |
|
|
||||||
if [ "`uname`" == "Darwin" ]; then
|
|
||||||
mkdir -p src/out/Default
|
|
||||||
cd src/out/Default
|
|
||||||
find . -type f -size +50M -delete
|
|
||||||
mkdir -p gen/electron
|
|
||||||
cd gen/electron
|
|
||||||
# These files do not seem to like being in a cache, let us remove them
|
|
||||||
find . -type f -name '*_pkg_info' -delete
|
|
||||||
fi
|
|
||||||
- when:
|
|
||||||
condition: << parameters.use-out-cache >>
|
|
||||||
steps:
|
|
||||||
- *step-save-out-cache
|
|
||||||
|
|
||||||
- *step-maybe-notify-slack-failure
|
- *step-maybe-notify-slack-failure
|
||||||
|
|
||||||
|
@ -1639,7 +1601,6 @@ jobs:
|
||||||
persist: true
|
persist: true
|
||||||
checkout: false
|
checkout: false
|
||||||
checkout-and-assume-cache: true
|
checkout-and-assume-cache: true
|
||||||
use-out-cache: false
|
|
||||||
|
|
||||||
linux-x64-testing-asan:
|
linux-x64-testing-asan:
|
||||||
executor:
|
executor:
|
||||||
|
@ -1656,7 +1617,6 @@ jobs:
|
||||||
- electron-build:
|
- electron-build:
|
||||||
persist: true
|
persist: true
|
||||||
checkout: true
|
checkout: true
|
||||||
use-out-cache: false
|
|
||||||
build-nonproprietary-ffmpeg: false
|
build-nonproprietary-ffmpeg: false
|
||||||
|
|
||||||
linux-x64-testing-no-run-as-node:
|
linux-x64-testing-no-run-as-node:
|
||||||
|
@ -1673,7 +1633,6 @@ jobs:
|
||||||
- electron-build:
|
- electron-build:
|
||||||
persist: false
|
persist: false
|
||||||
checkout: true
|
checkout: true
|
||||||
use-out-cache: false
|
|
||||||
|
|
||||||
linux-x64-testing-gn-check:
|
linux-x64-testing-gn-check:
|
||||||
executor:
|
executor:
|
||||||
|
@ -1724,7 +1683,6 @@ jobs:
|
||||||
persist: true
|
persist: true
|
||||||
checkout: false
|
checkout: false
|
||||||
checkout-and-assume-cache: true
|
checkout-and-assume-cache: true
|
||||||
use-out-cache: false
|
|
||||||
|
|
||||||
linux-arm-publish:
|
linux-arm-publish:
|
||||||
executor:
|
executor:
|
||||||
|
@ -1767,7 +1725,6 @@ jobs:
|
||||||
persist: true
|
persist: true
|
||||||
checkout: false
|
checkout: false
|
||||||
checkout-and-assume-cache: true
|
checkout-and-assume-cache: true
|
||||||
use-out-cache: false
|
|
||||||
|
|
||||||
linux-arm64-testing-gn-check:
|
linux-arm64-testing-gn-check:
|
||||||
executor:
|
executor:
|
||||||
|
|
Loading…
Reference in a new issue