Skip to content

Commit

Permalink
wip...
Browse files Browse the repository at this point in the history
  • Loading branch information
pruivo committed Nov 10, 2023
1 parent 612971a commit eb3b480
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/jdk21_vthread.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Java 21 CI with Virtual Threads

on:
push:
branches: [ "main", "t_jdk21_gha" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build
run: ./mvnw install -pl core -am --settings maven-settings.xml --batch-mode -DskipTests
- name: Test
run: ./mvnw verify -pl core -am --settings maven-settings.xml --batch-mode --fail-at-end -Dmaven.test.failure.ignore=true -Pvthreads-tests
env:
MAVEN_OPTS: '-Xmx1500m -XX:+HeapDumpOnOutOfMemoryError'
- name: Publish Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3251,6 +3251,7 @@
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<defaultTestNGGroups>smoke</defaultTestNGGroups>
<org.infinispan.tests.threads.virtual>true</org.infinispan.tests.threads.virtual>
<infinispan.test.parallel.threads>${system.numCores}</infinispan.test.parallel.threads>
</properties>
Expand Down

0 comments on commit eb3b480

Please sign in to comment.