Skip to content

Commit

Permalink
Circle CI config fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirosson committed Aug 23, 2021
1 parent ba09bdd commit 0239a6c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ references:
~/project

executors:
jdk_executor:
android_executor:
working_directory: *working_dir
docker:
- image: cimg/openjdk:11.0
- image: circleci/android:api-29
auth:
username: $DOCKERHUB_USER
password: $DOCKERHUB_PASSWORD
Expand Down Expand Up @@ -88,15 +88,15 @@ commands:
jobs:

ktlint:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- run:
name: Ktlint
command: ./gradlew ktlint --stacktrace

security:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- run:
Expand All @@ -110,7 +110,7 @@ jobs:
sha256sum --check gradle-wrapper.jar.sha256
build:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- attach_to_workspace
Expand All @@ -123,7 +123,7 @@ jobs:
destination: jars

test:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- attach_to_workspace
Expand All @@ -143,7 +143,7 @@ jobs:
destination: tests

validatePlugins:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- attach_to_workspace
Expand All @@ -152,7 +152,7 @@ jobs:
command: ./gradlew validatePlugins --stacktrace

publish:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- attach_to_workspace
Expand All @@ -164,7 +164,7 @@ jobs:
command: ./gradlew publish -PLOCAL_UPLOAD=false --refresh-dependencies --stacktrace

release:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- run:
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
command: ./gradlew sendMergePullRequest --stacktrace

upgradeDependencies:
executor: jdk_executor
executor: android_executor
steps:
- custom_checkout
- run:
Expand Down

0 comments on commit 0239a6c

Please sign in to comment.