Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

WIP - Update sentry take 2 #2095

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Disable cache in travis, update version in circle, see details
Update yarn cache version to fix ci issues

Disable travis npm :wqcache to fix build issues
  • Loading branch information
brainbicycle committed Feb 19, 2020
commit 0f474985c8c3c72c8d76e086845b920b9f220f41
15 changes: 7 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -58,16 +58,16 @@ jobs:

- restore_cache:
keys:
- v3-yarn-{{ checksum "yarn.lock" }}
- v4-yarn-{{ checksum "yarn.lock" }}
# Fall back to using the latest cache if no exact match is found.
- v3-yarn-
- v4-yarn-

- run:
name: Install Yarn Dependencies
command: yarn ci:skip-native-if-possible || yarn install --ignore-engines

- save_cache:
key: v3-yarn-{{ checksum "yarn.lock" }}
key: v4-yarn-{{ checksum "yarn.lock" }}
paths:
- node_modules

@@ -96,8 +96,7 @@ jobs:

- run:
name: Run Unit Tests
command:
yarn ci:skip-native-if-possible || { cd Example ; set -o pipefail && xcodebuild -workspace
command: yarn ci:skip-native-if-possible || { cd Example ; set -o pipefail && xcodebuild -workspace
Emission.xcworkspace -scheme "Emission Example" -configuration Debug test -sdk iphonesimulator -destination
"platform=iOS Simulator,OS=12.4,name=iPhone X" GCC_PREPROCESSOR_DEFINITIONS="\$GCC_PREPROCESSOR_DEFINITIONS
RUNNING_ON_CI=1" | tee /tmp/xcode_test_raw.log | xcpretty -c --test --report junit --output
@@ -166,16 +165,16 @@ jobs:

- restore_cache:
keys:
- v3-yarn-{{ checksum "yarn.lock" }}
- v4-yarn-{{ checksum "yarn.lock" }}
# Fall back to using the latest cache if no exact match is found.
- v3-yarn-
- v4-yarn-

- run:
name: Install Yarn Dependencies
command: yarn install --ignore-engines

- save_cache:
key: v3-yarn-{{ checksum "yarn.lock" }}
key: v4-yarn-{{ checksum "yarn.lock" }}
paths:
- node_modules

4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ script:
- yarn danger ci --verbose

cache:
yarn: true
yarn: false
npm: false
directories:
- node_modules
- .jest/cache