1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 17:51:46 +02:00

ci: Remove caching (temporarily)

I finally figured it out. Restoring the cache was trying to restore the cache from an older build
that used a different image in which the root user was the one doing all the tasks. I'm pushing a
build that doesn't restore the cache, then I'll add those steps back in after the next build.
This commit is contained in:
Trezy
2018-12-01 12:23:02 -06:00
committed by BcRikko
parent daa3fba424
commit 97f1aef706

View File

@@ -15,13 +15,13 @@ jobs:
<<: *defaults
steps:
- restore_cache:
name: Restore Repository Cache
keys:
- repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- repo-{{ .Branch }}
- repo-master
- repo-
# - restore_cache:
# name: Restore Repository Cache
# keys:
# - repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
# - repo-{{ .Branch }}
# - repo-master
# - repo-
- checkout
@@ -43,11 +43,11 @@ jobs:
- attach_workspace:
at: .
- restore_cache:
name: Restore npm Package Cache
keys:
- npm-{{ checksum "package-lock.json" }}
- npm-
# - restore_cache:
# name: Restore npm Package Cache
# keys:
# - npm-{{ checksum "package-lock.json" }}
# - npm-
- run:
name: Install Dependencies
@@ -71,13 +71,13 @@ jobs:
- attach_workspace:
at: .
- restore_cache:
name: Restore Build Cache
keys:
- build-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- build-{{ .Branch }}
- build-master
- build-
# - restore_cache:
# name: Restore Build Cache
# keys:
# - build-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
# - build-{{ .Branch }}
# - build-master
# - build-
# - run:
# name: Build the Application