Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Remove broken unit-test-11 check (#212)
Browse files Browse the repository at this point in the history
Remove broken unit-test-11 check
  • Loading branch information
carterkozak authored Aug 24, 2021
1 parent 41bdcd0 commit a8bef81
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 27 deletions.
27 changes: 1 addition & 26 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,28 +97,6 @@ jobs:
- store_test_results: { path: ~/junit }
- store_artifacts: { path: ~/artifacts }

unit-test-11:
docker: [{ image: 'cimg/openjdk:11.0.10-node' }]
resource_class: large
environment:
CIRCLE_TEST_REPORTS: /home/circleci/junit
CIRCLE_ARTIFACTS: /home/circleci/artifacts
GRADLE_OPTS: -Dorg.gradle.jvmargs='-Xmx2g' -Dorg.gradle.workers.max=2
_JAVA_OPTIONS: -XX:ActiveProcessorCount=4 -XX:MaxRAM=8g -XX:ErrorFile=/home/circleci/artifacts/hs_err_pid%p.log -XX:HeapDumpPath=/home/circleci/artifacts
steps:
- checkout
- restore_cache: { key: 'gradle-wrapper-v2-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}' }
- restore_cache: { key: 'unit-test-11-gradle-cache-v2-{{ checksum "versions.props" }}-{{ checksum "build.gradle" }}' }
- run: ./gradlew --parallel --stacktrace --continue test -Pcom.palantir.baseline-error-prone.disable
- save_cache:
key: 'unit-test-11-gradle-cache-v2-{{ checksum "versions.props" }}-{{ checksum "build.gradle" }}'
paths: [ ~/.gradle/caches ]
- run:
command: mkdir -p ~/junit && find . -type f -regex ".*/build/.*TEST.*xml" -exec cp --parents {} ~/junit/ \;
when: always
- store_test_results: { path: ~/junit }
- store_artifacts: { path: ~/artifacts }

trial-publish:
docker: [{ image: 'cimg/openjdk:8.0.282-node' }]
resource_class: medium
Expand Down Expand Up @@ -182,9 +160,6 @@ workflows:
requires: [ compile ]
filters: { tags: { only: /.*/ } }

- unit-test-11:
filters: { tags: { only: /.*/ } }

- check:
requires: [ compile ]
filters: { tags: { only: /.*/ } }
Expand All @@ -197,5 +172,5 @@ workflows:
filters: { branches: { ignore: master } }

- publish:
requires: [ unit-test, unit-test-11, check, trial-publish ]
requires: [ unit-test, check, trial-publish ]
filters: { tags: { only: /.*/ }, branches: { only: master } }
1 change: 0 additions & 1 deletion .circleci/template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
export CIRCLECI_TEMPLATE=java-library-oss
export JDK=8
export PRIMARY_BRANCH=master
export UNIT_TEST_11=true

0 comments on commit a8bef81

Please sign in to comment.