Hi,
Trying first integration with android using circleci 2.0
My simple config.yml:
version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-25-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum “build.gradle” }}-{{ checksum “app/build.gradle” }}
- run:
name: Run Tests
command: ./gradlew lint test
Always getting:
#!/bin/bash -eo pipefail
./gradlew lint test
/bin/bash: ./gradlew: Permission denied
Exited with code 126
Appreciate the help!