verdnatura-chat/.circleci/config.yml

529 lines
13 KiB
YAML
Raw Normal View History

defaults: &defaults
working_directory: ~/repo
macos: &macos
macos:
xcode: "11.5.0"
bash-env: &bash-env
BASH_ENV: "~/.nvm/nvm.sh"
version: 2.1
# EXECUTORS
executors:
mac-env:
<<: *macos
environment:
<<: *bash-env
# COMMANDS
commands:
detox-test:
parameters:
folder:
type: string
steps:
- checkout
2020-07-20 15:26:42 +00:00
- restore-npm-cache-mac
- restore-brew-cache
2020-07-21 09:47:29 +00:00
- restore-app-cache
2020-07-20 15:26:42 +00:00
- install-node
- install-apple-sim-utils
- install-npm-modules
- rebuild-detox
- run:
name: Test
command: |
npx detox test << parameters.folder >> --configuration ios.sim.release --cleanup
2020-07-20 15:26:42 +00:00
install-npm-modules:
description: Install NPM modules
steps:
- run: yarn
restore-npm-cache-linux:
description: Restore NPM cache
steps:
- restore_cache:
key: node-modules-{{ checksum "yarn.lock" }}
save-npm-cache-linux:
description: Save NPM cache
steps:
- save_cache:
key: node-modules-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
2020-07-20 15:26:42 +00:00
restore-npm-cache-mac:
description: Restore NPM cache
steps:
- restore_cache:
key: node-v1-mac-{{ checksum "yarn.lock" }}
2020-07-20 15:26:42 +00:00
save-npm-cache-mac:
description: Save NPM cache
steps:
- save_cache:
key: node-v1-mac-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
2020-07-20 15:26:42 +00:00
install-node:
description: Install Node
steps:
- run:
command: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
source ~/.nvm/nvm.sh
INSTALLED_NODE=`nvm which current`
echo "export PATH=\"${INSTALLED_NODE%%/node}:\$PATH\"" >> ~/.bash_profile
source ~/.bash_profile
restore-gems-cache:
description: Restore gems cache
steps:
- restore_cache:
key: bundle-v1-{{ checksum "ios/Gemfile.lock" }}
2020-07-20 15:26:42 +00:00
save-gems-cache:
description: Save gems cache
steps:
- save_cache:
key: bundle-v1-{{ checksum "ios/Gemfile.lock" }}
paths:
- vendor/bundle
2020-07-20 15:26:42 +00:00
update-fastlane-ios:
description: Update Fastlane
steps:
- run:
command: |
2020-07-20 15:26:42 +00:00
echo "ruby-2.6.4" > ~/.ruby-version
bundle install
working_directory: ios
update-fastlane-android:
description: Update Fastlane
steps:
- run:
command: |
echo "ruby-2.6.4" > ~/.ruby-version
bundle install
working_directory: android
restore-gradle-cache:
description: Restore gradle cache
steps:
- restore_cache:
key: android-{{ checksum "android/build.gradle" }}-{{ checksum "android/app/build.gradle" }}
save-gradle-cache:
description: Save gradle cache
steps:
- save_cache:
key: android-{{ checksum "android/build.gradle" }}-{{ checksum "android/app/build.gradle" }}
paths:
- ~/.gradle
restore-brew-cache:
description: Restore Brew cache
steps:
- restore_cache:
key: brew-mac
2020-07-20 15:26:42 +00:00
save-brew-cache:
description: Save brew cache
steps:
- save_cache:
key: brew-mac
2020-07-20 15:26:42 +00:00
paths:
2020-07-22 12:44:31 +00:00
- ~/Library/Caches/Homebrew
- /usr/local/Homebrew/Library/Taps/
2020-07-20 15:26:42 +00:00
install-apple-sim-utils:
description: Install appleSimUtils
steps:
- run:
command: |
2020-07-22 20:01:51 +00:00
export HOMEBREW_NO_AUTO_UPDATE=1
2020-07-22 20:03:41 +00:00
export HOMEBREW_NO_INSTALL_CLEANUP=1
2020-07-20 15:26:42 +00:00
brew tap wix/brew
brew install wix/brew/applesimutils
rebuild-detox:
description: Rebuild Detox framework cache
steps:
- run:
command: |
npx detox clean-framework-cache
npx detox build-framework-cache
2020-07-21 09:47:29 +00:00
save-app-cache:
description: Restore previously built app
steps:
- run:
name: Generate cache key for app source
command: |
echo $(git rev-parse HEAD:app) > "./app-git-revision.txt"
- save_cache:
2020-07-22 15:47:46 +00:00
key: iOSDetoxRelease-v3-{{ checksum "yarn.lock" }}-{{ checksum "ios/Podfile.lock" }}-{{ checksum "./app-git-revision.txt" }}
2020-07-21 09:47:29 +00:00
paths:
- ios/build/Build/Products/Release-iphonesimulator/RocketChatRN.app
restore-app-cache:
description: Save built app to cache
steps:
- run:
name: Generate cache key for app source
command: |
echo $(git rev-parse HEAD:app) > "./app-git-revision.txt"
- restore_cache:
2020-07-22 15:47:46 +00:00
key: iOSDetoxRelease-v3-{{ checksum "yarn.lock" }}-{{ checksum "ios/Podfile.lock" }}-{{ checksum "./app-git-revision.txt" }}
2020-07-21 09:47:29 +00:00
did-restore-app-cache:
description: Tests to see if an app was restored from the restore-app-cache job
steps:
- run:
name: if cache exists exit
command: |
FILE=/Users/distiller/project/ios/build/Build/Products/Release-iphonesimulator/RocketChatRN.app
if [ -e "$FILE" ]; then
2020-07-21 09:47:29 +00:00
echo "App restored from cache. Halting build."
circleci step halt
else
echo "Suitable app not cached. Continuing build."
fi
# JOBS
jobs:
lint-testunit:
<<: *defaults
docker:
- image: circleci/node:10
environment:
CODECOV_TOKEN: caa771ab-3d45-4756-8e2a-e1f25996fef6
steps:
- checkout
2020-07-20 15:26:42 +00:00
- restore-npm-cache-linux
2019-02-07 15:48:10 +00:00
2020-07-20 15:26:42 +00:00
- install-npm-modules
- run:
name: Lint
command: |
2019-02-07 15:48:10 +00:00
yarn lint
- run:
name: Test
command: |
2019-02-07 15:48:10 +00:00
yarn test
- run:
name: Codecov
command: |
2019-02-07 15:48:10 +00:00
yarn codecov
2020-07-20 15:26:42 +00:00
- save-npm-cache-linux
# E2E
2020-03-03 20:27:38 +00:00
e2e-build:
executor: mac-env
2018-05-23 13:39:18 +00:00
steps:
- checkout
2020-07-21 09:47:29 +00:00
- restore-app-cache
- did-restore-app-cache
2020-07-20 15:26:42 +00:00
- restore-npm-cache-mac
2020-07-20 15:26:42 +00:00
- restore-brew-cache
2018-05-23 13:39:18 +00:00
2020-07-20 15:26:42 +00:00
- install-node
2018-05-23 13:39:18 +00:00
2020-07-20 15:26:42 +00:00
- install-npm-modules
2020-07-20 15:26:42 +00:00
- rebuild-detox
2020-03-03 20:27:38 +00:00
2018-05-23 13:39:18 +00:00
- run:
name: Build
command: |
npx detox build --configuration ios.sim.release
2018-05-23 13:39:18 +00:00
2020-07-20 15:26:42 +00:00
- save-npm-cache-mac
- save-brew-cache
2020-03-03 20:27:38 +00:00
2020-07-21 09:47:29 +00:00
- save-app-cache
2020-03-03 20:27:38 +00:00
e2e-test-onboarding:
executor: mac-env
2020-03-03 20:27:38 +00:00
steps:
- detox-test:
folder: "./e2e/tests/onboarding"
2020-03-03 20:27:38 +00:00
e2e-test-room:
executor: mac-env
steps:
- detox-test:
folder: "./e2e/tests/room"
2018-05-23 13:39:18 +00:00
e2e-test-assorted:
executor: mac-env
steps:
- detox-test:
folder: "./e2e/tests/assorted"
# Android builds
android-build:
<<: *defaults
docker:
- image: circleci/android:api-28-node
environment:
JAVA_OPTS: '-Xms512m -Xmx2g'
GRADLE_OPTS: '-Xmx3g -Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-Xmx2g -XX:+HeapDumpOnOutOfMemoryError"'
TERM: dumb
<<: *bash-env
steps:
- checkout
2020-07-20 15:26:42 +00:00
- install-node
2020-07-20 15:26:42 +00:00
- restore-npm-cache-linux
2020-07-20 15:26:42 +00:00
- install-npm-modules
2020-07-20 15:26:42 +00:00
- update-fastlane-android
2020-07-20 15:26:42 +00:00
- restore-gradle-cache
- run:
2017-11-07 17:29:32 +00:00
name: Configure Gradle
command: |
2018-01-10 02:35:31 +00:00
echo -e "" > ./gradle.properties
# echo -e "android.enableAapt2=false" >> ./gradle.properties
echo -e "android.useAndroidX=true" >> ./gradle.properties
echo -e "android.enableJetifier=true" >> ./gradle.properties
echo -e "FLIPPER_VERSION=0.33.1" >> ./gradle.properties
2018-01-10 02:35:31 +00:00
if [[ $KEYSTORE ]]; then
echo $KEYSTORE_BASE64 | base64 --decode > ./app/$KEYSTORE
echo -e "KEYSTORE=$KEYSTORE" >> ./gradle.properties
echo -e "KEYSTORE_PASSWORD=$KEYSTORE_PASSWORD" >> ./gradle.properties
echo -e "KEY_ALIAS=$KEY_ALIAS" >> ./gradle.properties
echo -e "KEY_PASSWORD=$KEYSTORE_PASSWORD" >> ./gradle.properties
fi
echo -e "VERSIONCODE=$CIRCLE_BUILD_NUM" >> ./gradle.properties
echo -e "BugsnagAPIKey=$BUGSNAG_KEY" >> ./gradle.properties
working_directory: android
- run:
name: Set Google Services
command: |
cp google-services.prod.json google-services.json
working_directory: android/app
- run:
name: Config variables
command: |
echo -e "export default { BUGSNAG_API_KEY: '$BUGSNAG_KEY' };" > ./config.js
2017-11-07 17:29:32 +00:00
- run:
name: Build Android App
command: |
2018-01-10 02:35:31 +00:00
if [[ $KEYSTORE ]]; then
bundle exec fastlane android release
2018-01-10 02:35:31 +00:00
else
bundle exec fastlane android build
2018-01-10 02:35:31 +00:00
fi
working_directory: android
- run:
name: Upload sourcemaps to Bugsnag
command: |
if [[ $BUGSNAG_KEY ]]; then
yarn generate-source-maps-android upload \
--api-key=$BUGSNAG_KEY \
--app-version=$CIRCLE_BUILD_NUM \
--minifiedFile=android/app/build/generated/assets/react/release/app.bundle \
--source-map=android/app/build/generated/sourcemaps/react/release/app.bundle.map \
--minified-url=app.bundle \
--upload-sources
fi
- store_artifacts:
path: android/app/build/outputs
2020-07-20 15:26:42 +00:00
- save-npm-cache-linux
2020-07-20 15:26:42 +00:00
- save-gradle-cache
- persist_to_workspace:
root: .
paths:
- android/fastlane/report.xml
- android/app/build/outputs
android-google-play-alpha:
<<: *defaults
docker:
- image: circleci/android:api-28-node
steps:
- checkout
- attach_workspace:
at: android
- run:
name: Store the google service account key
command: echo "$FASTLANE_GOOGLE_SERVICE_ACCOUNT" | base64 --decode > service_account.json
working_directory: android
2020-07-20 15:26:42 +00:00
- update-fastlane-android
- run:
name: Fastlane Play Store Upload
command: bundle exec fastlane android alpha
working_directory: android
# iOS builds
ios-build:
executor: mac-env
steps:
- checkout
2020-07-20 15:26:42 +00:00
- restore-gems-cache
2020-07-20 15:26:42 +00:00
- restore-npm-cache-mac
2020-07-20 15:26:42 +00:00
- install-node
2020-07-20 15:26:42 +00:00
- install-npm-modules
2020-07-20 15:26:42 +00:00
- update-fastlane-ios
- run:
name: Set Google Services
command: |
cp GoogleService-Info.prod.plist GoogleService-Info.plist
working_directory: ios
- run:
name: Upload sourcemaps to Bugsnag
command: |
if [[ $BUGSNAG_KEY ]]; then
yarn generate-source-maps-ios
curl https://upload.bugsnag.com/react-native-source-map \
-F apiKey=$BUGSNAG_KEY \
-F appBundleVersion=$CIRCLE_BUILD_NUM \
-F dev=false \
-F platform=ios \
-F sourceMap=@ios-release.bundle.map \
-F bundle=@ios-release.bundle
fi
- run:
name: Fastlane Build
no_output_timeout: 1200
command: |
agvtool new-version -all $CIRCLE_BUILD_NUM
/usr/libexec/PlistBuddy -c "Set BugsnagAPIKey $BUGSNAG_KEY" ./RocketChatRN/Info.plist
2018-01-10 02:35:31 +00:00
if [[ $MATCH_KEYCHAIN_NAME ]]; then
bundle exec fastlane ios release
2018-01-10 02:35:31 +00:00
else
export MATCH_KEYCHAIN_NAME="temp"
export MATCH_KEYCHAIN_PASSWORD="temp"
bundle exec fastlane ios build
2018-01-10 02:35:31 +00:00
fi
working_directory: ios
2020-07-20 15:26:42 +00:00
- save-npm-cache-mac
2020-07-20 15:26:42 +00:00
- save-gems-cache
- store_artifacts:
path: ios/RocketChatRN.ipa
- persist_to_workspace:
root: .
paths:
- ios/*.ipa
- ios/fastlane/report.xml
ios-testflight:
executor: mac-env
steps:
- checkout
- attach_workspace:
at: ios
2020-07-20 15:26:42 +00:00
- restore-gems-cache
2020-07-20 15:26:42 +00:00
- update-fastlane-ios
- run:
name: Fastlane Tesflight Upload
command: |
bundle exec fastlane ios beta
working_directory: ios
2020-07-20 15:26:42 +00:00
- save-gems-cache
workflows:
build-and-test:
jobs:
- lint-testunit
- e2e-hold:
type: approval
requires:
- lint-testunit
2020-03-03 20:27:38 +00:00
- e2e-build:
requires:
- e2e-hold
- e2e-test-onboarding:
requires:
- e2e-build
- e2e-test-room:
requires:
- e2e-build
- e2e-test-assorted:
2020-03-03 20:27:38 +00:00
requires:
- e2e-build
- ios-build:
requires:
- lint-testunit
- ios-hold-testflight:
type: approval
requires:
- ios-build
- ios-testflight:
requires:
- ios-hold-testflight
- android-build:
requires:
- lint-testunit
- android-hold-google-play-alpha:
type: approval
requires:
- android-build
- android-google-play-alpha:
requires:
- android-hold-google-play-alpha