Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,21 +214,13 @@ jobs:
steps:
- checkout

- restore_cache:
keys:
# Rev the version when the cache gets too big
- dd-trace-java-muzzle-v1-{{ .Branch }}-{{ .Revision }}
- dd-trace-java-muzzle-v1-{{ .Branch }}
# - dd-trace-java-muzzle-v1-
# We are not running with a cache here because it gets very big and ends up taking more time
# restoring/saving than the actual increase in time it takes just downloading the artifacts each time.

- run:
name: Verify Muzzle
command: SKIP_BUILDSCAN="true" GRADLE_OPTS="-Dorg.gradle.jvmargs='-Xmx4G -Xms64M' -Ddatadog.forkedMaxHeapSize=4G -Ddatadog.forkedMinHeapSize=64M" ./gradlew muzzle --parallel --stacktrace --no-daemon --max-workers=16

- save_cache:
key: dd-trace-java-muzzle-v1-{{ .Branch }}-{{ .Revision }}
paths: ~/.gradle

workflows:
version: 2
build_test_deploy:
Expand Down