Skip to content

Commit

Permalink
Merge branch 'java21' into fibers
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme committed Nov 2, 2024
2 parents 4ed8925 + 4ef1bcc commit 578e2e6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Unit Tests"

on:
push:
branches: [ "master", "java21", "fibers" ]

jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java' ]

- name: Setup local maven cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-cache-${{ hashFiles('**/pom.xml') }}

- name: Run tests
run: ./mvnw test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@ Copyright (c) 2008-2024, Hazelcast, Inc. All Rights Reserved.
Visit [www.hazelcast.com](http://www.hazelcast.com/) for more info.

## Additional JMH tests (in java21_jmh_additional and fibers_jmh_additional)
To run the JMH benchmarks, it works to run `mvn clean package -DskipTests -T1` followed by `mvn exec:exec@run-benchmarks`
To run the new JMH benchmarks, it works to run `mvn clean package -DskipTests -T1` followed by `mvn exec:exec@run-benchmarks` from inside the hazelcast directory

0 comments on commit 578e2e6

Please sign in to comment.