Skip to content

Commit

Permalink
upgrade lincheck analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Mar 16, 2024
1 parent b9a4474 commit 2760df1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,7 @@ workflows:
- caffeine:strongKeysAndSoftValuesSyncCaffeineTest
- caffeine:weakKeysAndWeakValuesSyncCaffeineTest
- caffeine:weakKeysAndSoftValuesSyncCaffeineTest
# https://github.com/JetBrains/lincheck/issues/278
# - caffeine:lincheckTest
- caffeine:lincheckTest
- caffeine:isolatedTest
- caffeine:junitTest
- simulator:run
20 changes: 10 additions & 10 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ jobs:
-PincludePattern=ComputeBenchmark
-PbenchmarkParameters=computeType=Caffeine,Guava,ConcurrentHashMap
- name: Upload Compute JMH Results to Gist
uses: exuanbo/actions-deploy-gist@47697fceaeea2006a90594ee24eb9cd0a1121ef8 # v1.1.4
uses: popsiclestick/gist-sync-action@88f8633178625914f2a01abf1a765f7272a580fa # v1.2.0
if: >
github.event_name == 'push'
&& github.event.repository.fork == false
&& endsWith(github.ref, github.event.repository.default_branch)
with:
token: ${{ secrets.GIST_TOKEN }}
auth: ${{ secrets.GIST_TOKEN }}
gist_description: Compute JMH Results
gist_id: 511298014cc5629cbc5e57f09fd4c430
file_path: ./caffeine/build/reports/jmh/results.json
gist_file_name: compute_results_${{ matrix.java }}.json
gist_title: compute_results_${{ matrix.java }}.json
github_file: ./caffeine/build/reports/jmh/results.json
gist_url: https://gist.githubusercontent.com/ben-manes/511298014cc5629cbc5e57f09fd4c430
- name: Get/Put JMH Benchmark
uses: ./.github/actions/run-gradle
with:
Expand All @@ -71,17 +71,17 @@ jobs:
-PincludePattern=GetPutBenchmark
-PbenchmarkParameters=cacheType=Caffeine,Guava,ConcurrentHashMap
- name: Upload Get/Put JMH Results to Gist
uses: exuanbo/actions-deploy-gist@47697fceaeea2006a90594ee24eb9cd0a1121ef8 # v1.1.4
uses: popsiclestick/gist-sync-action@88f8633178625914f2a01abf1a765f7272a580fa # v1.2.0
if: >
github.event_name == 'push'
&& github.event.repository.fork == false
&& endsWith(github.ref, github.event.repository.default_branch)
with:
token: ${{ secrets.GIST_TOKEN }}
auth: ${{ secrets.GIST_TOKEN }}
gist_description: Get/Put JMH Results
gist_id: b231cf57cf8e144e2247716e777edcf3
file_path: ./caffeine/build/reports/jmh/results.json
gist_file_name: getput_results_${{ matrix.java }}.json
gist_title: getput_results_${{ matrix.java }}.json
github_file: ./caffeine/build/reports/jmh/results.json
gist_url: https://gist.githubusercontent.com/ben-manes/b231cf57cf8e144e2247716e777edcf3
- name: Put/Remove JMH Benchmark
uses: ./.github/actions/run-gradle
with:
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ commons-text = "1.11.0"
concurrentlinkedhashmap = "1.4.2"
config = "1.4.3"
coveralls = "2.12.2"
dependency-check = "9.0.9"
dependency-check = "9.0.10"
eclipse-collections = "12.0.0.M3"
ehcache3 = "3.10.8"
errorprone-core = "2.26.1"
Expand Down Expand Up @@ -64,7 +64,7 @@ junit-testng = "1.0.5"
junit4 = "4.13.2"
junit5 = "5.10.2"
kotlin = "1.9.23"
lincheck = "2.26"
lincheck = "2.27"
mockito = "5.11.0"
nexus-publish = "2.0.0-rc-2"
nullaway-core = "0.10.24"
Expand Down

0 comments on commit 2760df1

Please sign in to comment.