Skip to content

Instantly share code, notes, and snippets.

View TomGranot's full-sized avatar
👋
My e-mail is open - use it! ([email protected])

Tom Granot TomGranot

👋
My e-mail is open - use it! ([email protected])
View GitHub Profile
@TomGranot
TomGranot / config-part-2.yml
Last active March 5, 2019 17:10
Config.yml part 2
steps:
- run:
name: Wait 900 Seconds (15 minutes) for other commits (cherry-picking)
command: sleep 900
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
# - run:
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
# command: sudo chmod +x ./gradlew
@TomGranot
TomGranot / config-part-1.yml
Last active March 5, 2019 17:10
Config.yml part 1
version: 2
jobs:
build:
branches:
only:
- /release_.*/
working_directory: ~/code
docker:
- image: circleci/android:api-25
environment:
@TomGranot
TomGranot / config.yml
Last active March 5, 2019 19:26
Full Android CircleCI Config File
version: 2
jobs:
build:
branches:
only:
- /release_.*/
working_directory: ~/code
docker:
- image: circleci/android:api-25
environment: