diff --git a/.circleci/config.yml b/.circleci/config.yml index 3fc9b214..88e5b616 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,34 +27,34 @@ paths: - ~/.cache/electron - test: - parallelism: 4 - docker: - - image: electronuserland/builder:wine-mono - environment: - JEST_JUNIT_OUTPUT: ./test-reports/test.xml - TZ: Europe/Berlin - steps: - - checkout - - restore_cache: - keys: - - deps-{{ checksum "yarn.lock" }} - - restore_cache: - keys: - - v-5.0.3-electron - # because in the build job we use circleci docker image and circleci restores cache to original user home - - run: - command: | - mv /home/circleci/project/node_modules node_modules - mkdir -p ~/.cache - mv /home/circleci/.cache/electron ~/.cache/electron - - run: - # do not use yarn test because lint is done in the build job - command: | - yarn build - node ./test/out/helpers/runTests.js - - store_test_results: - path: test-reports +# test: +# parallelism: 4 +# docker: +# - image: electronuserland/builder:wine-mono +# environment: +# JEST_JUNIT_OUTPUT: ./test-reports/test.xml +# TZ: Europe/Berlin +# steps: +# - checkout +# - restore_cache: +# keys: +# - deps-{{ checksum "yarn.lock" }} +# - restore_cache: +# keys: +# - v-5.0.3-electron +# # because in the build job we use circleci docker image and circleci restores cache to original user home +# - run: +# command: | +# mv /home/circleci/project/node_modules node_modules +# mkdir -p ~/.cache +# mv /home/circleci/.cache/electron ~/.cache/electron +# - run: +# # do not use yarn test because lint is done in the build job +# command: | +# yarn build +# node ./test/out/helpers/runTests.js +# - store_test_results: +# path: test-reports workflows: version: 2