274 lines
6.4 KiB
YAML
274 lines
6.4 KiB
YAML
defaults: &defaults
|
|
working_directory: ~/repo
|
|
|
|
version: 2
|
|
jobs:
|
|
lint-testunit:
|
|
<<: *defaults
|
|
docker:
|
|
- image: circleci/node:8
|
|
|
|
environment:
|
|
CODECOV_TOKEN: caa771ab-3d45-4756-8e2a-e1f25996fef6
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- restore_cache:
|
|
key: node-modules-{{ checksum ".circleci/config.yml" }}-{{ checksum "yarn.lock" }}
|
|
|
|
- run:
|
|
name: Install NPM modules
|
|
command: |
|
|
yarn
|
|
|
|
- run:
|
|
name: Lint
|
|
command: |
|
|
yarn lint
|
|
|
|
- run:
|
|
name: Test
|
|
command: |
|
|
yarn test
|
|
|
|
- run:
|
|
name: Codecov
|
|
command: |
|
|
yarn codecov
|
|
|
|
- save_cache:
|
|
key: node-modules-{{ checksum ".circleci/config.yml" }}-{{ checksum "yarn.lock" }}
|
|
paths:
|
|
- ./node_modules
|
|
|
|
e2e-test:
|
|
macos:
|
|
xcode: "10.2.1"
|
|
|
|
environment:
|
|
BASH_ENV: "~/.nvm/nvm.sh"
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Install Node 8
|
|
command: |
|
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
|
|
source ~/.nvm/nvm.sh
|
|
# https://github.com/creationix/nvm/issues/1394
|
|
set +e
|
|
nvm install 8
|
|
|
|
- run:
|
|
name: Install appleSimUtils
|
|
command: |
|
|
brew update
|
|
brew tap wix/brew
|
|
brew install wix/brew/applesimutils
|
|
|
|
- run:
|
|
name: Install NPM modules
|
|
command: |
|
|
yarn global add detox-cli
|
|
yarn
|
|
|
|
- run:
|
|
name: Build
|
|
command: |
|
|
detox build --configuration ios.sim.release
|
|
|
|
- run:
|
|
name: Test
|
|
command: |
|
|
detox test --configuration ios.sim.release --cleanup
|
|
|
|
- store_artifacts:
|
|
path: /tmp/screenshots
|
|
|
|
android-build:
|
|
<<: *defaults
|
|
docker:
|
|
- image: circleci/android:api-28-node
|
|
|
|
environment:
|
|
# GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError"
|
|
GRADLE_OPTS: -Xmx2048m -Dorg.gradle.daemon=false
|
|
JVM_OPTS: -Xmx4096m
|
|
TERM: dumb
|
|
BASH_ENV: "~/.nvm/nvm.sh"
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- restore_cache:
|
|
key: node-modules-{{ checksum ".circleci/config.yml" }}-{{ checksum "yarn.lock" }}
|
|
|
|
- run:
|
|
name: Install NPM modules
|
|
command: |
|
|
yarn
|
|
|
|
- restore_cache:
|
|
key: android-{{ checksum ".circleci/config.yml" }}-{{ checksum "android/build.gradle" }}-{{ checksum "android/app/build.gradle" }}
|
|
|
|
- run:
|
|
name: Configure Gradle
|
|
command: |
|
|
cd android
|
|
|
|
echo -e "" > ./gradle.properties
|
|
echo -e "android.enableAapt2=false" >> ./gradle.properties
|
|
|
|
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
|
|
|
|
- run:
|
|
name: Set Google Services
|
|
command: |
|
|
cd android/app
|
|
cp google-services.prod.json google-services.json
|
|
|
|
- run:
|
|
name: Build Android App
|
|
command: |
|
|
cd android
|
|
if [[ $KEYSTORE ]]; then
|
|
./gradlew bundleRelease
|
|
else
|
|
./gradlew assembleDebug
|
|
fi
|
|
|
|
mkdir -p /tmp/build
|
|
|
|
mv app/build/outputs /tmp/build/
|
|
|
|
- store_artifacts:
|
|
path: /tmp/build/outputs
|
|
|
|
- save_cache:
|
|
key: node-modules-{{ checksum ".circleci/config.yml" }}-{{ checksum "yarn.lock" }}
|
|
paths:
|
|
- ./node_modules
|
|
|
|
- save_cache:
|
|
key: android-{{ checksum ".circleci/config.yml" }}-{{ checksum "android/build.gradle" }}-{{ checksum "android/app/build.gradle" }}
|
|
paths:
|
|
- ~/.gradle
|
|
|
|
ios-build:
|
|
macos:
|
|
xcode: "10.2.1"
|
|
|
|
environment:
|
|
BASH_ENV: "~/.nvm/nvm.sh"
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Install Node 8
|
|
command: |
|
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
|
|
source ~/.nvm/nvm.sh
|
|
# https://github.com/creationix/nvm/issues/1394
|
|
set +e
|
|
nvm install 8
|
|
|
|
- run:
|
|
name: Update Fastlane
|
|
command: |
|
|
brew update
|
|
brew install ruby
|
|
sudo gem install fastlane
|
|
|
|
- run:
|
|
name: Install NPM modules
|
|
command: |
|
|
yarn
|
|
|
|
- run:
|
|
name: Set Google Services
|
|
command: |
|
|
cd ios
|
|
cp GoogleService-Info.prod.plist GoogleService-Info.plist
|
|
|
|
- run:
|
|
name: Fastlane Build
|
|
no_output_timeout: 1200
|
|
command: |
|
|
cd ios
|
|
agvtool new-version -all $CIRCLE_BUILD_NUM
|
|
|
|
if [[ $MATCH_KEYCHAIN_NAME ]]; then
|
|
fastlane ios release
|
|
else
|
|
export MATCH_KEYCHAIN_NAME="temp"
|
|
export MATCH_KEYCHAIN_PASSWORD="temp"
|
|
fastlane ios build
|
|
fi
|
|
|
|
- store_artifacts:
|
|
path: ios/RocketChatRN.ipa
|
|
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- ios/*.ipa
|
|
- ios/fastlane/report.xml
|
|
|
|
ios-testflight:
|
|
macos:
|
|
xcode: "10.2.1"
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- attach_workspace:
|
|
at: ios
|
|
|
|
- run:
|
|
name: Update Fastlane
|
|
command: |
|
|
brew update
|
|
brew install ruby
|
|
sudo gem install fastlane
|
|
|
|
- run:
|
|
name: Fastlane Tesflight Upload
|
|
command: |
|
|
cd ios
|
|
fastlane pilot upload --ipa ios/RocketChatRN.ipa --changelog "$(sh ../.circleci/changelog.sh)"
|
|
|
|
workflows:
|
|
version: 2
|
|
build-and-test:
|
|
jobs:
|
|
- lint-testunit
|
|
# - e2e-test:
|
|
# requires:
|
|
# - lint-testunit
|
|
|
|
- ios-build:
|
|
requires:
|
|
- lint-testunit
|
|
- ios-hold-testflight:
|
|
type: approval
|
|
requires:
|
|
- ios-build
|
|
- ios-testflight:
|
|
requires:
|
|
- ios-hold-testflight
|
|
|
|
- android-build:
|
|
requires:
|
|
- lint-testunit
|