Comment cache

This commit is contained in:
igoroctaviano 2021-04-15 09:40:37 -03:00
parent c6bc19c002
commit f85f856734

View File

@ -48,12 +48,12 @@ jobs:
- checkout: - checkout:
post: post:
- git fetch --all - git fetch --all
- restore_cache: # - restore_cache:
name: Restore Yarn and Cypress Package Cache # name: Restore Yarn and Cypress Package Cache
keys: # keys:
# when lock file changes, use increasingly general patterns to restore cache # # when lock file changes, use increasingly general patterns to restore cache
- yarn-packages-{{ checksum "yarn.lock" }} # - yarn-packages-{{ checksum "yarn.lock" }}
- yarn-packages- # - yarn-packages-
- run: - run:
name: Install Dependencies name: Install Dependencies
command: yarn install --frozen-lockfile command: yarn install --frozen-lockfile
@ -107,12 +107,12 @@ jobs:
post: post:
- git fetch --all - git fetch --all
- restore_cache: # - restore_cache:
name: Restore Yarn and Cypress Package Cache # name: Restore Yarn and Cypress Package Cache
keys: # keys:
# when lock file changes, use increasingly general patterns to restore cache # # when lock file changes, use increasingly general patterns to restore cache
- yarn-packages-{{ checksum "yarn.lock" }} # - yarn-packages-{{ checksum "yarn.lock" }}
- yarn-packages- # - yarn-packages-
- run: - run:
name: Install Dependencies name: Install Dependencies
@ -143,12 +143,12 @@ jobs:
- checkout: - checkout:
post: post:
- git fetch --all - git fetch --all
- restore_cache: # - restore_cache:
name: Restore Yarn and Cypress Package Cache # name: Restore Yarn and Cypress Package Cache
keys: # keys:
# when lock file changes, use increasingly general patterns to restore cache # # when lock file changes, use increasingly general patterns to restore cache
- yarn-packages-{{ checksum "yarn.lock" }} # - yarn-packages-{{ checksum "yarn.lock" }}
- yarn-packages- # - yarn-packages-
- run: - run:
name: Install Dependencies name: Install Dependencies
command: yarn install --frozen-lockfile command: yarn install --frozen-lockfile
@ -237,11 +237,11 @@ jobs:
post: post:
- git fetch --all - git fetch --all
# Use increasingly general patterns to restore cache # Use increasingly general patterns to restore cache
- restore_cache: # - restore_cache:
name: Restore Yarn and Cypress Package Cache # name: Restore Yarn and Cypress Package Cache
keys: # keys:
- yarn-packages-{{ checksum "yarn.lock" }} # - yarn-packages-{{ checksum "yarn.lock" }}
- yarn-packages- # - yarn-packages-
- run: - run:
name: Install Dependencies name: Install Dependencies
command: yarn install --frozen-lockfile command: yarn install --frozen-lockfile
@ -346,7 +346,9 @@ workflows:
record: true record: true
store_artifacts: true store_artifacts: true
working_directory: platform/viewer working_directory: platform/viewer
build: npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js yarn run build build:
npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js
yarn run build
start: yarn run test:e2e:serve start: yarn run test:e2e:serve
spec: 'cypress/integration/common/**/*,cypress/integration/pwa/**/*' spec: 'cypress/integration/common/**/*,cypress/integration/pwa/**/*'
wait-on: 'http://localhost:3000' wait-on: 'http://localhost:3000'
@ -372,7 +374,9 @@ workflows:
record: true record: true
store_artifacts: true store_artifacts: true
working_directory: platform/viewer working_directory: platform/viewer
build: npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js yarn run build:package build:
npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js
yarn run build:package
start: yarn run test:e2e:serve start: yarn run test:e2e:serve
spec: 'cypress/integration/common/**/*,cypress/integration/script-tag/**/*' spec: 'cypress/integration/common/**/*,cypress/integration/script-tag/**/*'
wait-on: 'http://localhost:3000' wait-on: 'http://localhost:3000'
@ -403,7 +407,9 @@ workflows:
yarn: true yarn: true
store_artifacts: false store_artifacts: false
working_directory: platform/viewer working_directory: platform/viewer
build: npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js yarn run build build:
npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js
yarn run build
# start server --> verify running --> percy + chrome + cypress # start server --> verify running --> percy + chrome + cypress
command: yarn run test:e2e:dist command: yarn run test:e2e:dist
cache-key: 'yarn-packages-{{ checksum "yarn.lock" }}' cache-key: 'yarn-packages-{{ checksum "yarn.lock" }}'
@ -480,7 +486,9 @@ workflows:
yarn: true yarn: true
store_artifacts: false store_artifacts: false
working_directory: platform/viewer working_directory: platform/viewer
build: npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js yarn run build build:
npx cross-env QUICK_BUILD=true APP_CONFIG=config/dicomweb-server.js
yarn run build
# start server --> verify running --> percy + chrome + cypress # start server --> verify running --> percy + chrome + cypress
command: yarn run test:e2e:dist command: yarn run test:e2e:dist
cache-key: 'yarn-packages-{{ checksum "yarn.lock" }}' cache-key: 'yarn-packages-{{ checksum "yarn.lock" }}'